Hi i have a logfile which contains mutiple date fields and i need to parse 3 date fields
in my logstash config file i've wrote :
date {
match => ["Starting_Time", "yy-MM-dd HH:mm:ss"]
timezone => "Europe/Paris"
target => "@timestamp"
}
date {
match => ["start_rxdate", "yy-MM-dd"]
timezone => "Europe/Paris"
target => "start_rxdate"
}
date {
match => ["start_rxtime", "HH:mm:ss"]
timezone => "Europe/Paris"
target => "start_rxtime"
}
hte only date that worked is the one who has the @timestamp as a target
can someone help
thank you!