Hello...
I've been experimenting with logstash capabilities lately, and no matter which direction I take with the date filter, I seem to end up with _dateparsefailure. So to save myself the frustration, I was wondering if anyone could identify what is wrong, second set of eyes .
I am reading from dated logs. therefore my goal was to set @timestamp to the time within the log as opposed to the log insertion time.
Here is a sample date i'm working with: "2020-01-01 18:12:09.746046"
This date is set to a field named "Logdate" using grok before the date filter is called in the config.
and here is the snippet of my config:
date {
locale => "en"
match => ["Logdate", "yyyy-MM-dd HH:mm:ss.SSS"]
target => "@timestamp"
}
Any input would be appreciated!