Hello,
I am trying to test out a config to the console for a csv file and am getting the following error:
Unknown setting 'autodetect_column_names' for csv
My config:
input {
file {
path => "/apps/logstash-5.2.0/bin/testcsv.csv"
start_position => "beginning"
}
}
filter {
csv {
autodetect_column_names => true
}
}
output {
stdout {
codec => rubydebug {}
}
}
How is this not recognizing the filter plugin?
Thanks.