fix: remove overly verbose info message from cisco mdt (#10959)
This commit is contained in:
parent
b139ee7997
commit
dbd1fe734b
|
|
@ -356,8 +356,9 @@ func (c *CiscoTelemetryMDT) handleTelemetry(data []byte) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if the keys and content fields are missing, skip the message as it
|
||||||
|
// does not have parsable data used by Telegraf
|
||||||
if keys == nil || content == nil {
|
if keys == nil || content == nil {
|
||||||
c.Log.Infof("Message from %s missing keys or content", msg.GetNodeIdStr())
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue