I have set up Elastic, Logstash and Kibana on a spare machine to get my feet wet and I am having trouble just getting data into the system and visible in Kibana.
I have various systems sending rsyslog data to a directory on the same system.
I have tried using a basic syslog input, and a basic file input in the /etc/logstash/config.d/ directory. I can see in the logstash logs that it reads that file but nothing ever shows up in Kibana.
Here's the file input currently in place. Other then this input, the system is very generic and untouched. Just a new install.
input {
file {
path => "/var/log/remote/*"
}
}
output {
elasticsearch {
hosts => ["localhost:9200"]
}
stdout { codec => rubydebug }
}
Thanks!