kibana/docs/getting-started/tutorial-discovering.asciidoc
Kaarina Tungseth 2f912a3661
[DOCS] Clarification in tutorial (#59088)
* Cl[DOCS] arification in tutorial

* Review comments
2020-03-11 08:53:20 -05:00

35 lines
1,011 B
Plaintext

[[tutorial-discovering]]
=== Discover your data
Using *Discover*, enter
an {ref}/query-dsl-query-string-query.html#query-string-syntax[Elasticsearch
query] to search your data and filter the results.
. Open *Discover*.
+
The `shakes*` index pattern appears.
. To make `ba*` the current index, click the index pattern dropdown, then select `ba*`.
+
By default, all fields are shown for each matching document.
. In the search field, enter:
+
[source,text]
account_number<100 AND balance>47500
+
The search returns all account numbers between zero and 99 with balances in
excess of 47,500. Results appear for account numbers 8, 32, 78, 85, and 97.
+
[role="screenshot"]
image::images/tutorial-discover-2.png[]
+
. Hover over the list of *Available fields*, then
click *add* next to each field you want include as a column in the table.
+
For example, when you add the `account_number` field, the display changes to a list of five
account numbers.
+
[role="screenshot"]
image::images/tutorial-discover-3.png[]