fix(processors.filter): Rename processors.Filter -> processors.filter (#14460)

This commit is contained in:
Darío 2023-12-14 20:24:43 +01:00 committed by GitHub
parent 18e80f646d
commit 73ed448f1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ func (f *Filter) applyRules(m telegraf.Metric) bool {
}
func init() {
processors.Add("Filter", func() telegraf.Processor {
processors.Add("filter", func() telegraf.Processor {
return &Filter{}
})
}