Hey,
we are having problems after we upgraded elk to 7.12.1 (I'm not sure which version we previously used 7.xx). The date filter which we previously used is not working anymore. We don't get any logs in elastic. If I write the wrong date filter I get dateparsefailure but at least I can see the logs in elastic.
filter {
grok {
break_on_match => false
match => { "message" => "%{TIMESTAMP_ISO8601:encodertime}] %{GREEDYDATA:errorlog}" }
match => { "[log][file][path]" => "%{URIPATH}/channel\-%{WORD:channel}\.log" }
}
date{
match => [ "encodertime", "YYYY-MM-dd HH:mm:ss" ]
target => "@timestamp"
# timezone => "UTC"
}
}
My log:
[2021-06-03 04:51:44] [@ 0x6764688aff0343656100] error message 2386751. Check manual for additional information.
I can see that grok is working and also there is nothing useful in logstash logs. I also tried with DATESTAMP which parses the logs but it is still not working.
Any help would be highly appreciated.