Hi, I´m having problem with multiline codec, my last event is not processed until new one came along.
I know it sounds like I need to configure auto_flush_interval to get rid of the last event, but I set auto_flush_interval to 1 and nothing happens.
Using logstash logstash-codec-multiline (2.0.11) & logstash v.2.3.2.
here my input:
udp {
host => '0.0.0.0'
port => '33445'
codec => multiline {
charset => "UTF-8"
pattern => "^\t"
negate => false
what => "previous"
auto_flush_interval => 1
}
thx.