Hi
I have an epoch timestamp which I want to get into the @timestamp field in Elasticsearch/Kibana. When I use the code:
date {
match => [ "slowlog_timestamp","UNIX" ]
remove_field => [ "slowlog_timestamp" ]
}
I get a _dateparsefailure and nothing is to be send to Elasticsearch/Kibana. When I use the code:
date {
match => [ "slowlog_timestamp","UNIX" ]
remove_field => [ "slowlog_timestamp" ]
target => "myTime"
}
I get no _dateparsefailure and the event ends up in Elasticsearch/Kibana (see screenshot).
Anybody any ideas?
Thanks in advance.
Regards
Davy