I have two different date fields per entry. How do I translate both fields into Logstash' timestamp format.
Right now, only one of the time fields is going to "@timestamp"
Here are the date parts of the config file:
date {
match => [ "date1", "MM/dd/YYYY HH:mm" ]
}
date {
match => [ "date2", "MM/dd/YYYY HH:mm" ]
}