Update tutorial-define-index.asciidoc (#16028)

* Update tutorial-define-index.asciidoc

Added a note on how to check for current indices in Elasticsearch, to make it clearer for people that haven't used the previous chapters.

* Update tutorial-define-index.asciidoc
This commit is contained in:
markwalkom 2018-04-21 01:31:18 +10:00 committed by Jonathan Budzenski
parent e75f1dcde5
commit 113994232e
No known key found for this signature in database
GPG key ID: D28BF9418FA0F292

View file

@ -19,4 +19,4 @@ set, make sure the *Index contains time-based events* box is checked and select
*Time-field name* drop-down.
NOTE: When you define an index pattern, indices that match that pattern must exist in Elasticsearch. Those indices must
contain data.
contain data. You can check what indices exist by using `GET _cat/indices` in <<console-kibana>>, under Dev Tools, or `curl -XGET "http://localhost:9200/_cat/indices"`.