I have seen examples with input, filter, and output sections in separate files and others with them grouped into fewer files.
Does the behavior change when you group config sections into one file ?
... when you separate sections into separate files ?
Thanks.
Charles.w
(Charles Casadei)
May 28, 2017, 7:29pm
2
Logstash merges all the config files before starting up, so you could split input, filters and outputs into multiple files with no problem
warkolm
(Mark Walkom)
May 28, 2017, 9:49pm
3
If you have multiple files then make sure you use conditionals, so that only the appropriate filters and outputs are applied.
Thanks, Charles. That helps
Thanks, Mark
Both responses, together, help tremendously
Thanks to everyone.