Hi,
you should remove filebeat input configuration from the service YAML filebeat.yml.j2 and start working multiple YAML config files from subdirectory like:
filebeat.config.inputs:
enabled: true
path: inputs.d/*.yml
From there you can load the different input configurations for e.g. TCP or UDP. You could also then introduces tags which roll out different kind of input types on your hosts
This keeps the main configuration in filebeat.yml thin and better to read.
Hi,
you should remove filebeat input configuration from the service YAML
filebeat.yml.j2and start working multiple YAML config files from subdirectory like:From there you can load the different input configurations for e.g. TCP or UDP. You could also then introduces tags which roll out different kind of input types on your hosts
This keeps the main configuration in
filebeat.ymlthin and better to read.