What is your logstash pipeline configuration?
You can check if logstash is processing the data viewing the output on console.
On your pipeline file:
output {
stdout {
}
}
If you don't visualize the data on the terminal, the problem is only in logstash. When you visualize data, then you can put the plugin to send data to elasticsearch.
output {
elasticsearch {
hosts => "localhost:9200"
index => "%{type}-%{+YYYY.MM.dd}"
user => "elastic"
password => "xxxxxxxx"
}
}
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.