Hello!
I'm a beginner in this theme. Maybe someone can help me. I need to import csv file to kibana, to build some graph using filebeat.
I did filebeat conf like that:
filebeat.prospectors:
- type: log
enabled: true
paths:- C:\filea.csv
filebeat.config.modules:
path: ${path.config}/modules.d/.yml
reload.enabled: false
setup.template.settings:
index.number_of_shards: 1
setup.template:
name: 'filea'
pattern: 'filea-'
enabled: true
output.elasticsearch:
hosts: ["localhost:9200"]
index: "filea"
- C:\filea.csv
Data imported to Kibana, but all my strings from csv file looks like this
Can someone write me a code please to separate this message to 5 columns? Or maybe I can do this while import with some filter or something like this. Can someone give me a reason please?