fix(processors.printer): Convert output to string (#13564)
This commit is contained in:
parent
7aa3d79631
commit
0b1bd42ad2
|
|
@ -32,7 +32,7 @@ func (p *Printer) Apply(in ...telegraf.Metric) []telegraf.Metric {
|
|||
if err != nil {
|
||||
continue
|
||||
}
|
||||
fmt.Print(octets)
|
||||
fmt.Print(string(octets))
|
||||
}
|
||||
return in
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue