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

adds windows alternative for curl

Co-authored-by: Kaarina Tungseth <kaarina.tungseth@elastic.co>
This commit is contained in:
ncheckin 2020-09-25 16:03:32 -04:00 committed by GitHub
parent 0dc89cb716
commit cf18e4637e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,5 +47,11 @@ contains the time series data.
[role="screenshot"]
image::images/tutorial_index_patterns.png[All tutorial index patterns]
NOTE: When you define an index pattern, the indices that match that pattern must
exist in Elasticsearch and they must contain data. To check if the indices are
available, open the menu, go to *Dev Tools > Console*, then enter `GET _cat/indices`. Alternately, use
`curl -XGET "http://localhost:9200/_cat/indices"`.
For Windows, run `Invoke-RestMethod -Uri "http://localhost:9200/_cat/indices"` in Powershell.