I am very new to the ELK stack and I am having some difficulty wrapping my head around it.
I have a test configuration under /etc/logstash/conf.d/test.conf that looks like this:
input {
stdin { }
}
output {
elasticsearch {
hosts => ["localhost:9200"]
index => "test"
}
stdout{ }
}
When I run sudo /opt/logstash/bin/logstash -f /etc/logstash/conf.d/test.conf I see the output in stdout in the following form:
2016-08-04T10:09:46.406Z myserver.local hello world, but I don't see it apper in Kibana.
I think I might have created the index wrong, as I am not 100% sure how to do it.

index => "name_of_index"is the index name required by Kibana?localhost:9200/_cat/indices/?v. It will list all the indices and details.curl -XGET 'http://localhost:9200/_cat/indices/?v'I am not seeing the newly created index. How can I refresh the indices?9200port number for elasticsearch. Else make sure you add other port number to elastic search config. Because elasticsearch is only configured for9200.