Browse Source

Change var name to match previous

Signed-off-by: James Bach <james.bach@wise.com>
Signed-off-by: jalev <qweet.ing@gmail.com>
pull/2553/head
James Bach 2 years ago committed by Johannes 'fish' Ziemke
parent
commit
a177412d06
  1. 4
      collector/arp_linux.go

4
collector/arp_linux.go

@ -77,12 +77,12 @@ func (c *arpCollector) Update(ch chan<- prometheus.Metric) error {
enumeratedEntry := getTotalArpEntries(entries)
for device, entry := range enumeratedEntry {
for device, entryCount := range enumeratedEntry {
if c.deviceFilter.ignored(device) {
continue
}
ch <- prometheus.MustNewConstMetric(
c.entries, prometheus.GaugeValue, float64(entry), device)
c.entries, prometheus.GaugeValue, float64(entryCount), device)
}
return nil

Loading…
Cancel
Save