Import of huge quantity of csv files in elasticsearch with logstash

If the first line of each file has the column headers then you might be able to use the same config, assuming you want the fields of the document to be named after the columns.

filter { csv { autodetect_column_names => true } }
1 Like