[warn ][logstash.config.source.multilocal] ignoring the 'pipelines.yml' file because modules or command line options are specified

input {
file {
path => "/tmp/spreadsheet_data.csv"
start_position => "beginning"
sincedb_path => "/dev/null"
}
}

filter {
csv {
separator => ","
skip_header => "true"
columns => ['Name','Class','Dorm','Room','GPA']
}
}

output {
elasticsearch {
hosts => "http://localhost:9200"
index => "primeiro_teste"
}

stdout {}

}
}
can someone help me see what is wrong?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.