in generator.go [123:130]
func (config *FluentConfigGenerator) AddExcludeFilter(regex string, key string, tag string) FluentConfig {
config.ExcludeFilters = append(config.ExcludeFilters, RegexFilter{
Regex: regex,
Key: key,
Tag: tag,
})
return config
}