Hello,
i have a logfile generated by machine and i need to parse the date using logstash
in the date field the date format is for example 12/05/2017 11:49:05 and 4/Feb/2017 10:05:33
for the first format my parser worked
date {
match => ["DATE", "dd/MM/yyyy HH:mm:ss"]
timezone => "Europe/Paris"
}
for the second format how can i parse it like the first
thank you!