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?
dadoonet
(David Pilato)
July 12, 2017, 7:07am
2
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.
system
(system)
Closed
August 9, 2017, 7:49am
4
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.