Sending CSV data to Logstash

Hi -
I have a CSV data, I'd need to publish them to the Logstash and then to the Elastic Search, and may be visualize them on the Kibana.

Could some one please help me in doing this. Am pretty much new to the Logstash. Thanks !

Regards,
Prakash

You need a configuration file with

  • a file input,
  • a csv filter, and
  • an elasticsearch output.

I'm sure there are plenty of examples of such a setup. Build your configuration gradually, i.e. add one piece at a time. Start with a stdout { codec => rubydebug } output to verify that you're reading the input data correctly. Then start adding filters and finally enable the elasticsearch output.

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