Hi,
Currently we use the logstash date filter to match our timestamp field (named _time) using this config:
date {
match => ["_time", "UNIX_MS"]
remove_field => ["_time"]
}
I see that all this plugin is doing is put the value as a unix timestamp in the @timestamp field.
But the _time field is already a unix timestamp (Created using javascript Date.now()), so basically if i will just rename my _time field @timestamp will it work the same?