You will get a list of indices stored in Elastic and a count of documents in each index.
You can manually put data into Elasticsearch just to force creation of an index.
From command line on ES server issue the folling command
will create and write data to the website index.
curl -XPUT "http://localhost:9200/website/blog/2 " -d'{ "title": "My first blog entry", "text": "I am begenning to get the hang of this...", "date": "2014/01/02" }'
Now go back to Kibana and see if it finds your website index. There will only be one document in the index but at least you will know how Kibana will respond when it sees a valid index.
will delete the website index and ALL documents Dont do this until you are done testing with this index.
curl -XDELETE "http://localhost:9200/website"
It appears you only have one index and its named logstash-* The record you show in the last screen shot shows the logstash log. It was logged when you ran the command and shows logstash activity, not the contents of the csv file.
I don't think it created any index except the logstash-# index that logged when you ran the command.
If you re-run the
./logstash -f ./logstash-accidents.conf -v
command the logstash-* index will probably have two entries on the discovery page logstash-* view. the one above and a new one.
If you had more than one index the Discover page will have a down arrow next to your index name to select different indices. See screen shots below.
Closed Just current index.
Open you will see a list of available indices.
And as Tyler mentioned add an index to see additional data.
And it is best to go back to Elasticsearch to see exactly what indices you have.
Sense interface from Kibana is nice.
Screen shot of new Sense panel
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.