fix(processors.printer): Convert output to string (#13564)

This commit is contained in:
Sven Rebhan 2023-07-07 15:44:50 +02:00 committed by GitHub
parent 7aa3d79631
commit 0b1bd42ad2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ func (p *Printer) Apply(in ...telegraf.Metric) []telegraf.Metric {
if err != nil { if err != nil {
continue continue
} }
fmt.Print(octets) fmt.Print(string(octets))
} }
return in return in
} }