How to push csv data from filebeat to elasticsearch

I am new to elasticsearch , i have csv file data which i need to push into elasticsearch via filebeat. how can i do that?
ex:
planname1, sunday 5pm, done, 123
planname2, sunday 6pm, pending, 123

when we try this we got all this in message filed ,what i would like message into different fields like field1 planname1
field2 sunday 5pm,
field3 done
field4 123
so that visualization possible on each field.

Welcome to our community! :smiley:

You will want to setup an ingest pipeline to process the files, check out https://www.elastic.co/guide/en/elasticsearch/reference/7.9/csv-processor.html.

Thanks a lot, Worked

1 Like

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