chore(parsers.grok): Improve non-matching debug message (#15318)

This commit is contained in:
Sven Rebhan 2024-05-08 12:11:05 -04:00 committed by GitHub
parent e3f03ff500
commit 28cfad68d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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
}