Replies: 1 comment
-
I'm doing something similar to your requirement - having an It helps to imagine that everything gets virtually constructed as a single yaml file. So if you do something like For those reasons, I have a single "common" pipeline included at the bottom of the My only desire is to have the parsers defined within each pipeline yaml file. But according to the docs they still need to be in a global parsers.conf file :( |
Beta Was this translation helpful? Give feedback.
-
We want to provide a default fluent-bit config and then provide the option for additional configs to be loaded as necessary.
For example, we always want to log
file1.log
andfile2.log
, and then leave it up to someone else to add/include configs forfile3-5.log
as needed.This feels like we should use multiple
pipeline:
configurations, andinclude
them in the top level of the YAML config, but:tag/match
? for example, willmatch: *
get applied to all of them, or only the ones inside that pipeline.I was looking for a config flag or something to dump the in memory configuration to see what it ends up as (taking into accounts includes, pipelines etc), but couldn't find anything.
Beta Was this translation helpful? Give feedback.
All reactions