From 28cfad68d29527b2ba3dcd3697d15633fc5fd6d0 Mon Sep 17 00:00:00 2001 From: Sven Rebhan <36194019+srebhan@users.noreply.github.com> Date: Wed, 8 May 2024 12:11:05 -0400 Subject: [PATCH] chore(parsers.grok): Improve non-matching debug message (#15318) --- plugins/parsers/grok/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/parsers/grok/parser.go b/plugins/parsers/grok/parser.go index 94830a3bd..931a80d80 100644 --- a/plugins/parsers/grok/parser.go +++ b/plugins/parsers/grok/parser.go @@ -214,7 +214,7 @@ func (p *Parser) ParseLine(line string) (telegraf.Metric, error) { } if len(values) == 0 { - p.Log.Debugf("Grok no match found for: %q", line) + p.Log.Debugf("Grok no match found for or no data extracted from: %q", line) return nil, nil }