When I am trying to connect to Kibana through port:5601 , it is showing kibana web page but non of the index is matching . As I am using logstash so index pattern I am giving is logstash-* .
it is throwing index pattern not matching.
Thanks for replying.
so after running localhost:9200/_cat/indices I got the following response :
yellow open .kibana W9UCeb4WQsm7Vx3tkBH4AQ 1 1 1 0 3.2kb 3.2kb
Okay, elasticsearch is telling us that no logstash indices exist. Next steps would be to check the logstash logs for any configuration errors, and to verify the service is running properly. Logs will be stored in either /var/log/logstash or the logs folder in the logstash extraction.
The first log looks fine, it was able to connect to elasticsearch and add a template. The second log looks like an intentional stoppage of logstash, which is also fine.
Can you verify that logstash is getting events? One option is to log events to stdout as they come in:
output {
stdout { codec => rubydebug }
}
If nothing shows up I would try manually sending an event using netcat or similar.
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.