Sending of data logs from csv

I want to send logs from csv to elasticsearch.

csv ex.
001, mike, 17

but every five minutes there's an appended data to the csv.
ex. after 5 mins.

001, mike, 17
002, oscar, 19

how can i send data from csv realtime to the elasticsearch?
what technologies will i use?

I'd use filebeat to monitor file changes.

Then logstash to parse the CSV and transform to JSon.

Read: http://david.pilato.fr/blog/2015/04/28/exploring-capitaine-train-dataset/

Or ingest CSV plugin:

Also read:

Thank you very much @dadoonet. I'll try this.

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