Hello!
I want to match the date from a cvs file that comes in different fields with logstash! The date in the cvs file come in four fields (four columns) for example:
|Fecha_Trans|HH|MM|SS|
180314 |16 | 40 |45|
I was trying to do this but only is working with the field "Fecha_Trans" in the timestamp but is not recognizing the HH field, MM field and SS. ¿How Can I nest the fields?
date {
match => [ "Fecha_Trans", "yyMMdd" ]
match => ["HH", "HH"]
match => ["MM", "mm"]
match => ["SS", "ss"]
}