fix(inputs.intel_rdt): Do not fail on missing PIDs (#14274)
This commit is contained in:
parent
d0aaabb4ca
commit
05bb2777de
|
|
@ -309,8 +309,8 @@ func (r *IntelRDT) processOutput(cmdReader io.ReadCloser, processesPIDsAssociati
|
||||||
|
|
||||||
pids, err := findPIDsInMeasurement(out)
|
pids, err := findPIDsInMeasurement(out)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
r.errorChan <- err
|
r.Log.Warnf("Skipping measurement: %v", err)
|
||||||
break
|
continue
|
||||||
}
|
}
|
||||||
for processName, PIDsProcess := range processesPIDsAssociation {
|
for processName, PIDsProcess := range processesPIDsAssociation {
|
||||||
if pids == PIDsProcess {
|
if pids == PIDsProcess {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue