Hello to all,
I'm configuring logstash for parsing a custom log with logstash and sending it to Elasticsearch.
This is my output session:
output {
stdout { codec => rubydebug }
elasticsearch { hosts => ["10.255.200.66:9200"] }
}
and everything works fine.
If I remove the line "stdout { codec => rubydebug }", the elasticsearch sending is not working anymore.
Where I'm doing wrong?