set up logstash like this:
input {
syslog {
port => 1514
type => syslog
}
}
output {
elasticsearch {
hosts => ["http://elasticsearch.service.consul:9200"]
}
}
However, I'm not receiving any data. In Kibana I specified "logstash-*" as the index, but I'm still getting "Unable to fetch mapping".
I'm not getting any error messages in elasticsearch or logstash.
In my rsyslog.conf I have the following:
. @@localhost:1514
Am I missing something obvious here?