Skip to content

Commit

Permalink
Collects broadcast packet metrics (#22)
Browse files Browse the repository at this point in the history
The original DISCOv1 used to collect both broadcast and multicast
metrics, but for some reason I chose not to collect those for DISCOv2.
Upon closer inspection, we decided that while multicast packet metrics
were indeed not necessary, that broadcast packet metrics could possible
be useful. This commit adds collection for ingress and egress broadcast
packets.
  • Loading branch information
nkinkade authored Jan 10, 2022
1 parent 76f97c2 commit 77437de
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,13 @@
oidStub: .1.3.6.1.2.1.2.2.1.19
mlabUplinkName: switch.discards.uplink.tx
mlabMachineName: switch.discards.local.tx
- name: ifHCInBroadcastPkts
description: Ingress broadcast packets.
oidStub: .1.3.6.1.2.1.31.1.1.1.9
mlabUplinkName: switch.broadcast.uplink.rx
mlabMachineName: switch.broadcast.local.rx
- name: ifHCOutBroadcastPkts
description: Egress broadcast packets.
oidStub: .1.3.6.1.2.1.31.1.1.1.13
mlabUplinkName: switch.broadcast.uplink.tx
mlabMachineName: switch.broadcast.local.tx

0 comments on commit 77437de

Please sign in to comment.