forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs: Cleaning up GSG to match UI. (elastic#8840)
* Docs: Cleaning up GSG to match UI. * Docs: Updated annotated discover screen cap.
- Loading branch information
Showing
20 changed files
with
171 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
[[tutorial-dashboard]] | ||
== Putting it all Together with Dashboards | ||
|
||
A Kibana dashboard is a collection of visualizations that you can arrange and share. To get started, click the | ||
*Dashboard* tab, then the *Add Visualization* button at the far right of the search box to display the list of saved | ||
visualizations. Select _Markdown Example_, _Pie Example_, _Bar Example_, and _Map Example_, then close the list of | ||
visualizations by clicking the small up-arrow at the bottom of the list. You can move the containers for each | ||
visualization by clicking and dragging the title bar. Resize the containers by dragging the lower right corner of a | ||
visualization's container. Your sample dashboard should end up looking roughly like this: | ||
A dashboard is a collection of visualizations that you can arrange and share. | ||
To build a dashboard that contains the visualizations you saved during this tutorial: | ||
|
||
. Click *Dashboard* in the side navigation. | ||
. Click *Add* to display the list of saved visualizations. | ||
. Click _Markdown Example_, _Pie Example_, _Bar Example_, and _Map Example_, then close the list of | ||
visualizations by clicking the small up-arrow at the bottom of the list. | ||
|
||
Hovering over a visualization displays the container controls that enable you to | ||
edit, move, delete, and resize the visualization. | ||
|
||
Your sample dashboard should end up looking roughly like this: | ||
|
||
image::images/tutorial-dashboard.png[] | ||
|
||
Click the *Save Dashboard* button, then name the dashboard _Tutorial Dashboard_. You can share a saved dashboard by | ||
clicking the *Share* button to display HTML embedding code as well as a direct link. | ||
To get a link to share or HTML code to embed the dashboard in a web page, save | ||
the dashboard and click *Share*. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,42 @@ | ||
[[tutorial-discovering]] | ||
== Discovering Your Data | ||
|
||
Click the *Discover* image:images/discover-compass.png[Compass icon] tab to display Kibana's data discovery functions: | ||
Click *Discover* in the side navigation to display Kibana's data discovery functions: | ||
|
||
image::images/tutorial-discover.png[] | ||
|
||
Right under the tab itself, there is a search box where you can search your data. Searches take a specific | ||
{es-ref}query-dsl-query-string-query.html#query-string-syntax[query syntax] that enable you to create custom searches, | ||
which you can save and load by clicking the buttons to the right of the search box. | ||
In the query bar, you can enter an | ||
{es-ref}query-dsl-query-string-query.html#query-string-syntax[Elasticsearch | ||
query] to search your data. You can explore the results in Discover and create | ||
visualizations of saved searches in Visualize. | ||
|
||
Beneath the search box, the current index pattern is displayed in a drop-down. You can change the index pattern by | ||
selecting a different pattern from the drop-down selector. | ||
The current index pattern is displayed beneath the query bar. The index pattern | ||
determines which indices are searched when you submit a query. To search a | ||
different set of indices, select different pattern from the drop down menu. | ||
To add an index pattern, go to *Management/Kibana/Index Patterns* and click | ||
*Add New*. | ||
|
||
You can construct searches by using the field names and the values you're interested in. With numeric fields you can | ||
use comparison operators such as greater than (>), less than (<), or equals (=). You can link elements with the | ||
You can construct searches by using the field names and the values you're | ||
interested in. With numeric fields you can use comparison operators such as | ||
greater than (>), less than (<), or equals (=). You can link elements with the | ||
logical operators AND, OR, and NOT, all in uppercase. | ||
|
||
Try selecting the `ba*` index pattern and putting the following search into the search box: | ||
To try it out, select the `ba*` index pattern and enter the following query string | ||
in the query bar: | ||
|
||
[source,text] | ||
account_number:<100 AND balance:>47500 | ||
|
||
This search returns all account numbers between zero and 99 with balances in excess of 47,500. | ||
|
||
If you're using the linked sample data set, this search returns 5 results: Account numbers 8, 32, 78, 85, and 97. | ||
This query returns all account numbers between zero and 99 with balances in | ||
excess of 47,500. When searching the sample bank data, it returns 5 results: | ||
Account numbers 8, 32, 78, 85, and 97. | ||
|
||
image::images/tutorial-discover-2.png[] | ||
|
||
To narrow the display to only the specific fields of interest, highlight each field in the list that displays under the | ||
index pattern and click the *Add* button. Note how, in this example, adding the `account_number` field changes the | ||
display from the full text of five records to a simple list of five account numbers: | ||
By default, all fields are shown for each matching document. To choose which | ||
document fields to display, hover over the Available Fields list and click the | ||
*add* button next to each field you want include. For example, if you add | ||
just the `account_number`, the display changes to a simple list of five | ||
account numbers: | ||
|
||
image::images/tutorial-discover-3.png[] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
[[wrapping-up]] | ||
== Wrapping Up | ||
|
||
Now that you've handled the basic aspects of Kibana's functionality, you're ready to explore Kibana in further detail. | ||
Take a look at the rest of the documentation for more details! | ||
Now that you have a handle on the basics, you're ready to start exploring | ||
your own data with Kibana. | ||
|
||
* See <<discover, Discover>> for more information about searching and filtering | ||
your data. | ||
* See <<visualize, Visualize>> for information about all of the visualization | ||
types Kibana has to offer. | ||
* See <<management, Management>> for information about configuring Kibana | ||
and managing your saved objects. | ||
* See <<console-kibana, Console>> for information about the interactive | ||
console UI you can use to submit REST requests to Elasticsearch. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[[setup]] | ||
= Setup Kibana | ||
= Set Up Kibana | ||
|
||
[partintro] | ||
-- | ||
|