Elasticstack 6.1
I am trying to parse the following field/date:
"EventTime":"2018-02-08 12:43:35.951854Z"
I have used:
filter {
date {
match => [ "EventTime", "yyyy-MM-dd HH:mm:ss:SSSZ" ]
}
}
filter {
date {
match => [ "EventTime", "ISO8106" ]
}
}
And they all return a _dateparsefailure
I am not sure how to get the date to parse correctly