Commit graph

162 commits

Author SHA1 Message Date
Drew Tate
babd0ee341
[Lens][Docs] add metric coloring doc (#174405)
## Summary

Fix https://github.com/elastic/kibana/issues/174379

Adds an FAQ section for the coloring behavior of the metric
visualization

<img width="847" alt="Screenshot 2024-01-08 at 12 51 27 PM"
src="79a74a79-af07-474d-aceb-124d62dbee76">

---------

Co-authored-by: amyjtechwriter <61687663+amyjtechwriter@users.noreply.github.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2024-01-16 09:41:20 -06:00
Jake Smith
8f078224aa
Add IP Prefix Aggregation-based Visualization (#173474)
## Summary

Closes #156121

This PR is for Issue #156121 and adds the ability to perform [IP
Prefix](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-ipprefix-aggregation.html)
aggregation-based visualizations within the Kibana UI. Previously this
aggregation could only be done in DevTools as a manual query to
Elasticsearch and not visualized.


![image](7e049da9-fd42-41f6-bbaf-99d3d6cb0790)


![image](dcfae012-9d06-4346-9118-3965434ff8b8)


### Various Notes

* The following two folders & their subfolders had files modified for
this
  * src/plugins/vis_default_editor/public/components
  * src/plugins/data/common/search/aggs
* I spent a fair amount of time debating & attempting to build the
PrefixLength Input boxes and their interplay with the is_ipv6 toggle
button. Originally I tried having only 1 PrefixLength button that the
toggle switch would modify the max value / validate the contents of.
* In the end, it seemed much cleaner & straightforward to have two
separate input boxes (both prefix_length.tsx components) and just create
them with different options. This means that when a user toggles the
switch back and forth, they would be seeing/editing two different Prefix
Length boxes depending on which way the switch is.
* To make it a little more clear they are different boxes, I put "IPv4"
and "IPv6" in the label name for these boxes. Additionally, I think it
is helpful this way if you are potentially swapping back and forth
between v4 and v6 visualizations.
* There is 4 new unit tests, all related to input options, added in the
ip_prefix_fn.test.ts file
* Note - here is a test CSV file of IPv4 addresses one could import to
test locally and see this addition.

[alphadataset.csv](13691358/alphadataset.csv)
* Configure the Override settings in this way if uploading it to
Kibana/Elastic
  * 

![image](34ce701a-f4d5-4107-8a08-c6195e21c169)


 
### Checklist

Delete any items that are not applicable to this PR.

- [x] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md)
- [x] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [x] Any UI touched in this PR is usable by keyboard only (learn more
about [keyboard accessibility](https://webaim.org/techniques/keyboard/))
- [x] Any UI touched in this PR does not create any new axe failures
(run axe in browser:
[FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/),
[Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US))
- [x] This renders correctly on smaller devices using a responsive
layout. (You can test this [in your
browser](https://www.browserstack.com/guide/responsive-testing-on-local-server))
- [x] This was checked for [cross-browser
compatibility](https://www.elastic.co/support/matrix#matrix_browsers)


### Risk Matrix

Before closing this PR, invite QA, stakeholders, and other developers to
identify risks that should be tested prior to the change/feature
release.

When forming the risk matrix, consider some of the following examples
and how they may potentially impact the change:

| Risk | Probability | Severity | Mitigation/Notes |

|---------------------------|-------------|----------|-------------------------|



### For maintainers

- [ ] This was checked for breaking API changes and was [labeled
appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)

---------

Co-authored-by: Stratoula Kalafateli <efstratia.kalafateli@elastic.co>
Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
2024-01-15 13:07:55 +01:00
amyjtechwriter
a968a2e3f5
[DOCS] Updating screenshot (#171549)
## Summary

Updating the screenshot on the '[Create links to other
dashboards](https://www.elastic.co/guide/en/kibana/current/dashboard-links.html)'
page in the 'Make dashboards interactive' section of the Kibana docs.
2023-11-20 15:24:53 +00:00
amyjtechwriter
edbee87937
[DOCS] Screenshot of a links panel added (#171095)
## Summary

A screeshot of the new links panel feature has been added to the links
panel [doc
page](https://www.elastic.co/guide/en/kibana/current/dashboard-links.html).
2023-11-14 14:45:29 +00:00
amyjtechwriter
5e8414779a
[DOCS] Inline editing in Lens (#170649)
## Summary

With the arrival of inline editing to Lens panels the [Create
visualizations](https://www.elastic.co/guide/en/kibana/current/lens.html#create-the-visualization-panel)
'Edit and delete' section has been updated. Users can now use the option
**Edit visualization** to make edits to Lens visualizations using a
flyout panel, without having to leave the dashboard and go into the Lens
application.

The [Edit
panels](https://www.elastic.co/guide/en/kibana/current/dashboard.html#edit-panels)
section on the 'Dashboards and visualizations' page has been edited as
the **Edit Lens** option has been removed from the UI.

Relates to: #166169 &
[#243](https://github.com/elastic/platform-docs-team/issues/243)
2023-11-06 15:25:03 +00:00
Nick Peihl
878df86151
[Dashboard links] Links documentation (#170153)
Fixes #166750 

## Summary

Adds documentation for the links panel.

---------

Co-authored-by: Amy Jonsson <amy.jonsson@elastic.co>
2023-11-01 14:11:36 -04:00
Lisa Cawley
aab7f6e368
[DOCS] Remove a-data-source shared attribute (#167943) 2023-10-05 12:46:16 -07:00
Drew Tate
172de682c5
[Event annotations] Individual annotation editing from library (#163346)
## Summary

Resolve https://github.com/elastic/kibana/issues/158774
Part of https://github.com/elastic/kibana/issues/159053

<img width="1920" alt="Screenshot 2023-09-13 at 2 00 25 PM"
src="69cfe07e-d442-462b-91c5-395d6040c383">

<img width="1920" alt="Screenshot 2023-09-13 at 2 00 09 PM"
src="260aedbe-31d0-415a-b387-10a9b13bf9a6">

<img width="1920" alt="Screenshot 2023-09-13 at 2 01 07 PM"
src="9672010b-d49b-4041-acf1-33d3baec1e9a">


### Known issues
- [ ] ~Responsive layout~ **Proposal:** don't optimize for mobile
- [x] Recovering embeddable from problematic data view state
- [x] margin around dimension buttons
- [x] Functional test coverage

### Checklist

- [x] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md)
- [x]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [x] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [x] Any UI touched in this PR is usable by keyboard only (learn more
about [keyboard accessibility](https://webaim.org/techniques/keyboard/))
- [ ] Any UI touched in this PR does not create any new axe failures
(run axe in browser:
[FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/),
[Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US))
- [x] This renders correctly on smaller devices using a responsive
layout. (You can test this [in your
browser](https://www.browserstack.com/guide/responsive-testing-on-local-server))
- [ ] This was checked for [cross-browser
compatibility](https://www.elastic.co/support/matrix#matrix_browsers)

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Stratoula Kalafateli <efstratia.kalafateli@elastic.co>
2023-09-20 10:09:17 +03:00
James Rodewig
37a53b69cf
[DOCS] Fix event.values URL template var desc (#163507) 2023-08-10 14:32:55 -04:00
James Rodewig
1c3f4a8543
[DOCS] Remove outdated Maps video (#161991)
- Removes a video from the [Maps](https://www.elastic.co/guide/en/kibana/current/maps.html) docs. The video's UI is outdated. There are no current plans to update the video.
- Adds a comment to the [Make dashboards interactive](https://www.elastic.co/guide/en/kibana/current/drilldowns.html). This video is slightly outdated, but we're leaving it in at the request of the dev team.

Closes https://github.com/elastic/platform-docs-team/issues/131
2023-07-25 06:08:21 -04:00
Stratoula Kalafateli
672c90a9c1
[Dashboard] Panel settings action improvements (#161616)
## Summary

Part of https://github.com/elastic/kibana/issues/160256

- Replaces the Edit panel settings text with the simpler Panel settings
- Replaces the documentation
- Replaces the icon

<img width="1757" alt="image"
src="e0ea6c19-8a65-44b8-906e-c364c00536a0">

### Checklist

- [ ]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
2023-07-11 16:22:57 +03:00
Nathan Reese
917deff3a4
Check lens support in editor comparisons table for tag cloud and significant terms (#159617)
Update editor tables to reflect that tag cloud and significant terms
aggregations are supported in lens
2023-06-14 07:27:31 -06:00
Carly Richmond
ad2593b7b4
Update tsvb.asciidoc to correct typo (#159551) 2023-06-13 08:53:16 -04:00
Lisa Cawley
668968b758
[DOCS] Replace description attributes with frontmatter for migration (#158126) 2023-05-24 08:16:43 -07:00
Kaarina Tungseth
06a800fbad
[DOCS] Adds 8.8 Viz docs (#157215)
## Summary

Adds the 8.8 documentation for the following:

- Enable report sharing: https://github.com/elastic/kibana/pull/153429
Docs preview:
https://kibana_157215.docs-preview.app.elstc.co/guide/en/kibana/master/reporting-getting-started.html

- Random sampling feature: https://github.com/elastic/kibana/pull/143221
Docs preview:
https://kibana_157215.docs-preview.app.elstc.co/guide/en/kibana/master/lens.html#improve-visualization-loading-time

- Improve Ignore global filters UI:
https://github.com/elastic/kibana/pull/154441 and
https://github.com/elastic/kibana/pull/155280
Docs preview:
https://kibana_157215.docs-preview.app.elstc.co/guide/en/kibana/master/lens.html#add-annotations

---------

Co-authored-by: Tim Sullivan <tsullivan@users.noreply.github.com>
2023-05-23 10:41:42 -05:00
Kaarina Tungseth
0689c638d3
[DOCS] Adds the presentation 8.8 docs (#157765)
## Summary

Adds the docs for the following 8.8 Presentation docs:

- Unified dashboard settings:
https://github.com/elastic/kibana/pull/153862
Docs preview:
https://kibana_157765.docs-preview.app.elstc.co/guide/en/kibana/master/dashboard.html#add-dashboard-settings

- Add reset button: https://github.com/elastic/kibana/pull/154872
Docs preview:
https://kibana_157765.docs-preview.app.elstc.co/guide/en/kibana/master/dashboard.html#reset-the-dashboard

---------

Co-authored-by: Nick Peihl <nickpeihl@gmail.com>
Co-authored-by: Hannah Mudge <Heenawter@users.noreply.github.com>
2023-05-16 14:21:01 -05:00
Nick Peihl
b692e347f4
[Dashboard Usability] Unified dashboard settings (#153862)
## Summary

Adds flyout for changing individual dashboard settings such as title,
description, tags, and save time with dashboard. This also moves the
existing dashboard options (show panel titles, sync colors, use margins,
sync cursor, and sync tooltips) into the flyout.

Fixes #144532

[Flaky test
runner](https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2055)

### Checklist

Delete any items that are not applicable to this PR.

- [x] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md)
- [x] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [x] Any UI touched in this PR is usable by keyboard only (learn more
about [keyboard accessibility](https://webaim.org/techniques/keyboard/))
- [x] Any UI touched in this PR does not create any new axe failures
(run axe in browser:
[FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/),
[Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US))
- [x] This was checked for [cross-browser
compatibility](https://www.elastic.co/support/matrix#matrix_browsers)


### For maintainers

- [ ] This was checked for breaking API changes and was [labeled
appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
2023-03-31 09:52:51 -04:00
Kaarina Tungseth
e57883f3be
[DOCS] 8.7 Presentation docs (#151797)
## Summary

- #148331: [Updated
screenshots](https://kibana_151797.docs-preview.app.elstc.co/guide/en/kibana/master/add-controls.html)
- #146335:
[Docs](https://kibana_151797.docs-preview.app.elstc.co/guide/en/kibana/master/dashboard.html#search-or-filter-your-data)
- #146363:
[Docs](https://kibana_151797.docs-preview.app.elstc.co/guide/en/kibana/master/dashboard.html#edit-panels)
- #144867:
[Docs](https://kibana_151797.docs-preview.app.elstc.co/guide/en/kibana/master/add-controls.html#edit-controls)
2023-03-08 16:09:43 -06:00
Kaarina Tungseth
3de0009dd1
[DOCS] Adds Visualizations features for 8.7 (#151045)
## Summary

Adds the 8.7 docs for:

- #149388
- #148829
- Closes #144590
- Replaces #144551
2023-03-01 14:28:19 -06:00
Nick Peihl
ace2c30c29
[Dashboard Usability] Unified panel options pane (#148301) 2023-02-02 16:30:31 -05:00
Anton Dosov
72268e1b0e
[Docs][Image Embeddable] Add user-facing docs for image panel (#148054)
## Summary

Adding user-facing docs about new image panel -
https://github.com/elastic/kibana/issues/81345

Adding an inline sub-section of the main dashboard doc page similar to
text panel -
https://www.elastic.co/guide/en/kibana/master/dashboard.html#add-text
2023-01-04 16:01:49 +01:00
Kaarina Tungseth
226dabfc10
[DOCS] Update create-panels-with-editors.asciidoc Bucket Script supported with TSVB (#148315)
## Summary

Opens #147692 in `main`.
2023-01-03 11:35:50 -05:00
Kaarina Tungseth
f918a3745b
Adds the VisEditor docs for 8.6 (#146471)
## Summary

Adds the 8.6 for the following:

- #140878, #143946 and #142187

[Doc
preview](https://kibana_146471.docs-preview.app.elstc.co/guide/en/kibana/master/tsvb.html#edit-visualizations-in-lens)

- #142936, #142561, #143820, and #142838

[Doc
preview](https://kibana_146471.docs-preview.app.elstc.co/guide/en/kibana/master/add-aggregation-based-visualization-panels.html#edit-agg-based-visualizations-in-lens)

- #138732
  
[Doc
preview](https://kibana_146471.docs-preview.app.elstc.co/guide/en/kibana/master/lens.html#change-the-fields)

- #141626 and #141615
  
[Doc
preview](https://kibana_146471.docs-preview.app.elstc.co/guide/en/kibana/master/lens.html#add-annotations)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Stratoula Kalafateli <stratoula1@gmail.com>
2022-12-08 14:18:03 -06:00
Damià Rita
17bbd644f8
Add complete parameter name (#128901)
By further reading in the docs, this is the full parameter name I think
belongs here

## Summary

By further reading in the docs, this is the full parameter name I think
belongs here


### Checklist

Delete any items that are not applicable to this PR.

- [x] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md)
- [x] Any UI touched in this PR is usable by keyboard only (learn more
about [keyboard accessibility](https://webaim.org/techniques/keyboard/))
- [x] Any UI touched in this PR does not create any new axe failures
(run axe in browser:
[FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/),
[Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US))
- [x] This renders correctly on smaller devices using a responsive
layout. (You can test this [in your
browser](https://www.browserstack.com/guide/responsive-testing-on-local-server))
- [x] This was checked for [cross-browser
compatibility](https://www.elastic.co/support/matrix#matrix_browsers)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Julia Rechkunova <julia.rechkunova@elastic.co>
2022-12-06 14:51:43 +01:00
Kaarina Tungseth
9a26af6fac
[DOCS] Adds the 8.6 Presentation docs (#145474)
## Summary

Adds the docs for the following:

- #141824
Doc preview:
https://kibana_145474.docs-preview.app.elstc.co/guide/en/kibana/master/get-started.html

- #142780
Doc preview:
https://kibana_145474.docs-preview.app.elstc.co/guide/en/kibana/master/add-controls.html

- #143762
Doc preview:
https://kibana_145474.docs-preview.app.elstc.co/guide/en/kibana/master/add-controls.html

Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
2022-11-28 11:20:38 -05:00
Andrew Tate
e2d3bb9dec
[Lens] Multi metric partition charts (#143966) 2022-11-14 16:49:39 -07:00
Kaarina Tungseth
41d88e6677
[DOCS] Vis Editors 8.5 (#142520)
* [DOCS] Vis Editors 8.5

* Review comments

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2022-10-17 11:42:17 -06:00
Stratoula Kalafateli
46c1250db7
[Lens][Visualize] Adds option to disable cursor sync on dashboards (#143355)
* [Lens][Visualize] Disable cursor sync on dashboard level option

* Increase XY limits as it fails for 1B :)

* Fix jest tests

* Apply PR nit
2022-10-17 12:33:52 +03:00
Kaarina Tungseth
670b6adb3e
[DOCS] Adds time slider control (#141832)
* [DOCS] Adds time slider control

* Review comment

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2022-09-28 15:10:51 -05:00
Kaarina Tungseth
ced8978e89
[DOCS] Updates quick start and presentation sections with sample data changes (#138945)
* [DOCS] Updates Quick start with sample data changes

* Updates dashboard and editors with sample data changes

* Review comments
2022-08-18 11:55:13 -05:00
Anton Dosov
3d5632310b
Allow to configure roundUp in date helper of url drilldown (#137874) 2022-08-03 15:33:05 +02:00
Kaarina Tungseth
faede27bf7
[DOCS] Adds the Vis Editor 8.3 docs (#134115)
* [DOCS] Adds the Vis Editor 8.3 docs

* Updates screenshots and UI labels

* Update docs/user/dashboard/lens.asciidoc

Co-authored-by: Stratoula Kalafateli <stratoula1@gmail.com>

* Review comments

* Removes duplicate image

* Review comment

Co-authored-by: Stratoula Kalafateli <stratoula1@gmail.com>
2022-06-21 15:07:46 -05:00
Kaarina Tungseth
df3054c1a9
[DOCS] Removes deprecation message from controls (#134509) 2022-06-15 16:13:41 -05:00
Kaarina Tungseth
e2a4aa0bdf
[DOCS] Adds the new Controls docs (#133439)
* [DOCS] Adds the new Controls docs

* Fixes broken links

* Fixes broken links

* Review comments

* Update docs/user/dashboard/make-dashboards-interactive.asciidoc

Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>

* Update docs/user/dashboard/make-dashboards-interactive.asciidoc

Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>

* Review comments

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
2022-06-13 12:48:56 -07:00
Joe Reuter
f30919ce54
[Vega] Adjust vega doc for usage of ems files (#130948)
* adjust vega doc

* Update docs/user/dashboard/vega-reference.asciidoc

Co-authored-by: Nick Peihl <nickpeihl@gmail.com>

* Update docs/user/dashboard/vega-reference.asciidoc

Co-authored-by: Nick Peihl <nickpeihl@gmail.com>

* Update docs/user/dashboard/vega-reference.asciidoc

Co-authored-by: Nick Peihl <nickpeihl@gmail.com>

* Update docs/user/dashboard/vega-reference.asciidoc

Co-authored-by: Nick Peihl <nickpeihl@gmail.com>

* Update docs/user/dashboard/vega-reference.asciidoc

Co-authored-by: Nick Peihl <nickpeihl@gmail.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Nick Peihl <nickpeihl@gmail.com>
2022-05-04 04:02:54 -04:00
Kaarina Tungseth
b2bb959f9b
[DOCS} Adds technical preview to Lens annotations (#130058) 2022-04-12 17:16:31 -05:00
Kaarina Tungseth
294fe2b932
[DOCS] Adds docs for URL drilldown support (#129666)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2022-04-12 10:15:17 -05:00
Kaarina Tungseth
e046687d11
Adds the Lens 8.2.0 docs (#128986)
* Adds the Lens 8.2.0 docs

* Review comments

* Update Discover setting

* Update Discover setting

* Update Discover setting

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2022-04-06 12:50:44 -05:00
Kaarina Tungseth
1b683cdd28
[DOCS] Adds the TSVB to Lens docs (#129129)
* [DOCS] Adds the TSVB to Lens docs

* Review comments

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2022-04-05 10:55:07 -05:00
Luca Belluccini
bb7ae01362
[DOC] Mention CORS is required when external URLs are allowed in Vega (#118862)
* [DOC] Mention CORS is required when external URLs are allowed in Vega

Mention CORS is required when external URLs are allowed in Vega.

* Update docs/user/dashboard/vega-reference.asciidoc

Co-authored-by: Kaarina Tungseth <kaarina.tungseth@elastic.co>

* Update docs/user/dashboard/vega-reference.asciidoc

Co-authored-by: Kaarina Tungseth <kaarina.tungseth@elastic.co>

Co-authored-by: Kaarina Tungseth <kaarina.tungseth@elastic.co>
2022-03-16 17:30:33 -04:00
Kaarina Tungseth
bb1834d297
[DOCS] Adds note for data source performance impact (#127184) 2022-03-08 15:50:06 -06:00
Alexey Antonov
efcdbb66dd
[TSVB] Multi-field group by (#126015)
* fieldSelect

* activate multifield support for table

* update table>pivot request_processor

* fix some tests

* apply some changes

* fix JEST

* push initial logic for series request_processor

* fix some broken cases for Table tab

* update convert_series_to_datatable / convert_series_to_vars

* add some logic

* fix table/terms

* do some logic

* fix some issues

* push some logic

* navigation to Lens

* fix CI

* add excludedFieldFormatsIds param into excludedFieldFormatsIds

* fix ci

* fix translations

* fix some comments

* fix series_agg label

* update labels in lens

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2022-03-03 15:04:04 +03:00
Kaarina Tungseth
ccc9488f93
[DOCS] Lens updates for 8.1.0 (#126207)
* [DOCS] Lens updates for 8.1.0

* Fixes image
2022-02-22 16:04:23 -06:00
Andrew Tate
178e7a7e4c
[TSVB] add rison helper and URL encoding for drilldown urls (#124185) 2022-02-10 08:45:21 -06:00
Aswath
164eaf27f2
[Vega] Add Filter custom label for kibanaAddFilter (#124498)
* [Vega] Add Filter custom label for kibanaAddFilter

* extend documentation

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Joe Reuter <johannes.reuter@elastic.co>
2022-02-07 04:56:08 -07:00
Tobias Stadler
2a552e8de6
Added suport for timefilter/min/max in Vega urls (#124077) 2022-01-31 17:04:10 +01:00
Joe Reuter
339f721a86
[Lens] Add previous time shift back (#121284) 2022-01-12 11:53:56 +01:00
István Zoltán Szabó
776e9b3884
[DOCS] Changes an attribute to resolve correctly (#122667) 2022-01-12 10:05:17 +01:00
Kaarina Tungseth
1df4d30032
[DOCS] Updates {data-source} in Dashboard and visualizations (#121213) 2021-12-15 15:16:09 -06:00
Kaarina Tungseth
a468b9850b
[DOCS] Fixes Lens typo (#119886) 2021-11-29 14:06:18 -06:00