Hi,
I'm trying to input a complex Json log with nested fields. Here is my .conf file:
input { file { path => /home/logstash-user/json-try.json" start_position => "beginning" codec => "json" } } output { elasticsearch { codec => "json"} stdout { codec => "rubydebug"} }
I tried to input to files, one simple with 1 nested object, and another one more complex with about 3 nested objects.
The first file is filtered correctly, but the second one isn't filtered at all, and the following error appears:
"Attempted to send a bulk request to Elasticsearch .... but an error occurred and it failed!" and so on...
What is my problem?