I have a date in this format
"event_time" : "2019-07-02 19:23:59+0000"
and need to parse it in the format of @timestamp that is
"@timestamp" : "2019-08-01T11:18:34.890Z"
This is my filter :
date {
match => [ "event_time", "yyyy-MM-dd'T'HH:mm:ss'.'SSS'Z'" ]
locale => en
timezone => "UTC"
target => "event_time"
}
but unable to parse.
Help me with suggestions.