Hi people, I enable netflow module in filebeat, and in filebeat.yml file I put this lines:
output.elasticsearch:
hosts: ["siemtest.provincianet.com.ar:9200"]
protocol: "http"
username: "elastic"
password: "xxx"
indices:
- index: "filebeat-netflow-%{+yyyy.MM.dd}"
when.equals:
event.module: "netflow" - index: "filebeat-%{[agent.version]}-%{+yyyy.MM.dd}"
whe.not.equals:
event.module: "netflow"
I wanted to put every netflow data in one filebeat index and the other data in another index.
After executing "filebeat setup" and "service filebeat start", I go to "Index Management" --> filebeat-*, and I see a message telling that I have to reindex because there are some fields with different defined type along several indexes.
Have I proceed in a corect way?
How can I do to have netflow data in a index an the other data in another index (default)???
Thanks a lot!!!