Skip to content

Commit 8959774

Browse files
Merge branch 'main' into eui-upgrade-47.0.0
2 parents cdf28f3 + 5555ac7 commit 8959774

125 files changed

Lines changed: 4366 additions & 2996 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/CODEOWNERS

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@
5656
/examples/state_containers_examples/ @elastic/kibana-app-services
5757
/examples/ui_action_examples/ @elastic/kibana-app-services
5858
/examples/ui_actions_explorer/ @elastic/kibana-app-services
59-
/examples/url_generators_examples/ @elastic/kibana-app-services
60-
/examples/url_generators_explorer/ @elastic/kibana-app-services
6159
/examples/field_formats_example/ @elastic/kibana-app-services
6260
/examples/partial_results_example/ @elastic/kibana-app-services
6361
/examples/search_examples/ @elastic/kibana-app-services

docs/concepts/data-views.asciidoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ uploaded a file, or added sample data,
3232
you get a data view for free, and can start exploring your data.
3333
If you loaded your own data, follow these steps to create a data view.
3434

35-
. Open the main menu, then click to *Stack Management > Data Views*.
35+
. Open the main menu, then click *Stack Management > Data Views*.
3636

3737
. Click *Create data view*.
3838

39-
[role="screenshot"]
40-
image:management/index-patterns/images/create-data-view.png["Create data view"]
41-
4239
. Start typing in the *name* field, and {kib} looks for the names of
4340
indices, data streams, and aliases that match your input.
4441
+
42+
[role="screenshot"]
43+
image:management/index-patterns/images/create-data-view.png["Create data view"]
44+
+
4545
** To match multiple sources, use a wildcard (*). For example, `filebeat-*` matches
4646
`filebeat-apache-a`, `filebeat-apache-b`, and so on.
4747
+

docs/concepts/kuery.asciidoc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,20 @@ but in some cases you might need to search on dates. Include the date range in q
144144
@timestamp < "2021"
145145
-------------------
146146

147+
KQL supports date math expressions.
148+
149+
[source,yaml]
150+
-------------------
151+
@timestamp < now-1d
152+
-------------------
153+
154+
[source,yaml]
155+
-------------------
156+
updated_at > 2022-02-17||+1M/d
157+
-------------------
158+
159+
Check the
160+
{ref}/common-options.html#date-math[date math documentation] for more examples.
147161

148162
[discrete]
149163
=== Exist queries

docs/discover/document-explorer.asciidoc

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,18 @@ To resize a column, drag the right edge of the column header until the column is
3131

3232
Column widths are stored with a saved search. When you visualize saved searches on dashboards, the saved search appears the same as in **Discover**.
3333

34+
[float]
35+
[[document-explorer-row-height]]
36+
=== Adjust row height
37+
38+
To set the row height to 1 or more lines, or automatically
39+
adjust the height to fit the contents, click the row height icon
40+
image:images/row-height-icon.png[icon to open the Row height pop-up].
41+
42+
[role="screenshot"]
43+
image::images/document-explorer-row-height.png[Row height settings for Document Explroer, width="75%"]
44+
45+
3446
[float]
3547
[[document-explorer-sort-data]]
3648
=== Sort data
@@ -43,7 +55,7 @@ The default sort is based on the time field, from new to old.
4355
[role="screenshot"]
4456
image::images/document-explorer-sort-data.png[Pop-up in Document Explorer for sorting columns, width="75%"]
4557

46-
. To add more fields to the sort, expand the dropdown menu.
58+
. To add more fields to the sort, select from the dropdown menu.
4759
+
4860
By default, columns are sorted in the order they are added.
4961
For example, to sort by `order_date` then `geo.country_iso_code`, make sure `order_date` appears first.
@@ -77,14 +89,22 @@ the documents that occurred before and after it.
7789
image:images/expand-icon-2.png[double arrow icon to open a flyout with the document details].
7890
+
7991
[role="screenshot"]
80-
image::images/document-explorer-expand.png[Multi field sort in Document Explorer]
92+
image::images/document-explorer-expand.png[Expanded view in Document Explorer]
8193

82-
. Scan through the fields and their values. If you find a field of interest,
94+
. Scan through the fields and their values, or search for a field by name.
95+
96+
. When you find a field of interest,
8397
click
84-
image:images/actions-icon.png[three dots icon in table column] in the *Actions* column for filters and other controls.
85-
. To view documents that occurred before or after the event you are looking at, click <<discover-view-surrounding-documents,**Surrounding documents**>>.
98+
image:images/actions-icon.png[three dots icon in table column] in the *Actions* column
99+
to:
100+
.. Filter the view of the data
101+
.. Toggle the field in or out the document table
102+
.. Pin the field so it stays at the top
103+
86104
. For direct access to a particular document, click <<discover-view-single-document,**Single document**>>.
87105

106+
. To view documents that occurred before or after the event you are looking at, click <<discover-view-surrounding-documents,**Surrounding documents**>>.
107+
88108
[float]
89109
[[document-explorer-full-screen]]
90110
=== View documents in fullscreen

docs/discover/field-statistics.asciidoc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@ for the data and its cardinality?
1414
This example explores the fields in
1515
the <<gs-get-data-into-kibana, sample web logs data>>, or you can use your own data.
1616

17-
. Open the main menu, click *Stack Managment > Advanced Settings*, search for *Show field statistics*,
18-
and turn on the setting.
17+
. Open the main menu, and click *Discover*.
1918

20-
. Open the main menu, click *Discover*, expand the {data-source} dropdown,
21-
and select *kibana_sample_data_logs*.
19+
. Expand the {data-source} dropdown, and select *kibana_sample_data_logs*.
2220

2321
. If you don’t see any results, expand the time range, for example, to *Last 7 days*.
2422

21.4 KB
Loading

docs/discover/images/customer.png

3.44 KB
Loading
-18.6 KB
Binary file not shown.
41.9 KB
Loading
5.2 KB
Loading

0 commit comments

Comments
 (0)