From 73ed448f1fdc0276fa476d7780257ba29d0b5332 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo?= Date: Thu, 14 Dec 2023 20:24:43 +0100 Subject: [PATCH] fix(processors.filter): Rename processors.Filter -> processors.filter (#14460) --- plugins/processors/filter/filter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/processors/filter/filter.go b/plugins/processors/filter/filter.go index 0c17c36b1..2e6157eee 100644 --- a/plugins/processors/filter/filter.go +++ b/plugins/processors/filter/filter.go @@ -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{} }) }