Logstash + unknown setting seperator for csv

2019-02-16T20:07:07,894][WARN ][logstash.config.source.multilocal] Ignoring the 'pipelines.yml' file because modules or command line options are specified
[2019-02-16T20:07:07,910][INFO ][logstash.runner ] Starting Logstash {"logstash.version"=>"7.0.0"}
[2019-02-16T20:07:14,994][ERROR][logstash.filters.csv ] Unknown setting 'seperator' for csv
[2019-02-16T20:07:15,014][ERROR][logstash.agent ] Failed to execute action {:action=>LogStash::PipelineAction::Create/pipeline_id:main, :exception=>"LogStash::ConfigurationError", :message=>"Something is wrong with your configuration.", :backtrace=>["C:/Software/Logstash/logstash-7.0.0-alpha2/logstash-core/lib/logstash/config/mixin.rb:86:in config_init'", "C:/Software/Logstash/logstash-7.0.0-alpha2/logstash-core/lib/logstash/filters/base.rb:126:ininitialize'", "org/logstash/plugins/PluginFactoryExt.java:70:in filter_delegator'", "org/logstash/plugins/PluginFactoryExt.java:244:inplugin'", "org/logstash/plugins/PluginFactoryExt.java:149:in buildFilter'", "org/logstash/execution/JavaBasePipelineExt.java:47:ininitialize'", "C:/Software/Logstash/logstash-7.0.0-alpha2/logstash-core/lib/logstash/java_pipeline.rb:23:in initialize'", "C:/Software/Logstash/logstash-7.0.0-alpha2/logstash-core/lib/logstash/pipeline_action/create.rb:36:inexecute'", "C:/Software/Logstash/logstash-7.0.0-alpha2/logstash-core/lib/logstash/agent.rb:313:in `block in converge_state'"]}
[2019-02-16T20:07:15,405][INFO ][logstash.agent ] Successfully started Logstash API endpoint {:port=>9600}

C:\Software\Logstash\logstash-7.0.0-alpha2\bin>

input {
file {
path => "\Pop1.csv"
start_position => "beginning"

}
}

filter{
csv{
seperator => ","
columns => ["LATITUDE", "LONGITUDE"]
convert => {}
}
}

output {
elasticsearch {
hosts => ["http://localhost:9200"]
}
stdout {}
}

That should be separator, not seperator.

Hello,

Follow this sample example, which will help you [Load csv file in logstash]

Regards

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