logstash 8.10.1 installed via rpm on AWS.
The filter drops split fields if they are empty. If the field being split is an array of empty strings then the entire event is discarded.
input { generator { count => 1 lines => [ '{ "someField": [ "", "" ] }' ] codec => json } }
output { stdout { codec => rubydebug { metadata => false } } }
filter { split{ field => "someField" } }
produces no output. This feels wrong.
logstash 8.10.1 installed via rpm on AWS.
The filter drops split fields if they are empty. If the field being split is an array of empty strings then the entire event is discarded.
produces no output. This feels wrong.