hi,
we're using logstash 2.2.2
I'm trying to feed logstash with kibana logs, kibana log looks like:
{"type":"log","@timestamp":"2016-03-13T10:05:30+00:00","tags":["status","plugin:elasticsearch","info"],"pid":15856,"name":"plugin:elasticsearch","state":"green","message":"Status changed from yellow to green - Kibana index ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
so its json
when I do like this:
input {
file {
type => "ELK_kibana"
path => "/var/log/kibana/kibana.stdout"
}
}
and output goes to elasticsearch, it works ok, the only thing its unformatted
ok, so I did:
input {
file {
type => "ELK_kibana"
path => "/var/log/kibana/kibana.stdout"
codec => "json"
}
}
And logs never goes to output, and nothing is happening (but other logs are working ok)
the same issue is with rubydebug plugin:
input {
file {
type => "ELK_logstash"
path => "/var/log/logstash/logstash.log"
codec => "rubydebug"
}
}
And nothing goes to output.
Am I missing something in my configurations?