Change var name to match previous

Signed-off-by: James Bach <james.bach@wise.com>
Signed-off-by: jalev <qweet.ing@gmail.com>
This commit is contained in:
James Bach 2022-12-16 12:53:13 +00:00 committed by Johannes 'fish' Ziemke
parent 5538773089
commit a177412d06
1 changed files with 2 additions and 2 deletions

View File

@ -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