Hello, I have installed filebeat and uploaded a CSV to obtain the filebeat configuration for the installation, creating a new index and pipeline. the yml file looks like this:
filebeat.inputs:
- type: log
paths:
- C:\Users\victo\Downloads\archive\*.csv
exclude_lines: ['^"?General_Health"?,"?Checkup"?,"?Exercise"?,"?Heart_Disease"?,"?Skin_Cancer"?,"?Other_Cancer"?,"?Depression"?,"?Diabetes"?,"?Arthritis"?,"?Sex"?,"?Age_Category"?,"?Height_\(cm\)"?,"?Weight_\(kg\)"?,"?BMI"?,"?Smoking_History"?,"?Alcohol_Consumption"?,"?Fruit_Consumption"?,"?Green_Vegetables_Consumption"?,"?FriedPotato_Consumption"?']
cloud.id: "MyID:****"
cloud.auth: "elastic:****"
index: "prueba3"
pipeline: "prueba3-pipeline"
setup:
template.enabled: false
ilm.enabled: false
After that I go to powershell and execute ./filebeat -c filebeat.yml setup when finished ./filebeat -e -c filebeat.yml
I can see that the data is going to the filebeat-* index but not to the created one "prueba3"
I want to have the data in my index prueba3, what is the problem what am i doing wrong?

