https://github.com/NETWAYS/ansible-collection-elasticstack/blob/a0f47b912db2ea071d0507d05f1a3c82c5a4769a/roles/beats/templates/filebeat.yml.j2#L5 See at: https://www.elastic.co/docs/reference/beats/filebeat/migrate-to-filestream The template has to be updated with something like this: ``` {% if beats_filebeat_log_input | bool %} {% for input in beats_filebeat_log_inputs %} - type: filestream id: {{ input }}-filestream enabled: true paths: {% for path in beats_filebeat_log_inputs[input].paths %} - {{ path }} {% endfor %} ``` It has other impacts in the template file
ansible-collection-elasticstack/roles/beats/templates/filebeat.yml.j2
Line 5 in a0f47b9
See at:
https://www.elastic.co/docs/reference/beats/filebeat/migrate-to-filestream
The template has to be updated with something like this:
It has other impacts in the template file