Hello.
I am trying to parse a date from a column, which name is autodetected using the csv plugin. The problem is that the date plugin is doing nothing with this field. If instead of using "autodetect_column_names" I write the name with "columns", it works. Why is this happening? How can I make this work with autodetect_column_names?
input{
file { path => "/path/to/file.csv" }
}
filter{
csv {
separator => ","
autodetect_column_names => true
}
date {
match => [ "timestamp_column", "dd/MM/yy HH:mm:ss ZZZ" ]
target => "test_column"
}
}
output{
stdout{ codec => "rubydebug"}
}
Thank you so much in advanced.