How to convert a unix_timestamp field to a new date field

Per https://www.elastic.co/guide/en/logstash/current/plugins-filters-date.html

filter{
date {
match => [ "pubTime", "UNIX" ]
target => "pubTime_new"
}
}
2 Likes