Hi, Im trying to use the date and time in the log as the timestamp in elastic.
this is part of the log
12/27/19 06:46:39
this is the grok and the date filter to use the log date and time to use in the timestamp
grok{
match => {"message" => "%{DATA:date} %{TIME:time}"}
}
date {
match => ["date time", "MM/dd/yy HH:mm:ss"]
target => "@timestamp"
}
how can I achieve this?