andrew@onlab.us
Committed by Gerrit Code Review

Ignore PORT_STATS_UPDATED from topology metrics

Change-Id: I40d796c668700fdb0bf220eb02f2001deb77a4c2
......@@ -193,11 +193,17 @@ public class TopologyMetrics implements TopologyMetricsService {
private class InnerDeviceListener implements DeviceListener {
@Override
public void event(DeviceEvent event) {
// Ignore PORT_STATS_UPDATED probe event from interfering with
// other device event timestamps
if (event.type() == DeviceEvent.Type.PORT_STATS_UPDATED) {
log.info("PORT_STATS_UPDATED event ignored from metrics");
} else {
recordEvent(event, topologyDeviceEventMetric);
log.debug("Device Event: time = {} type = {} event = {}",
log.info("Device Event: time = {} type = {} event = {}",
event.time(), event.type(), event);
}
}
}
/**
* Inner Host Event Listener class.
......