Skip to content

Commit

Permalink
udp_queues_linux.go: s/upd/udp/ in two error strings
Browse files Browse the repository at this point in the history
Signed-off-by: Karsten Weiss <knweiss@gmail.com>
  • Loading branch information
knweiss committed Jun 29, 2020
1 parent 8d436be commit b9b1d4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions collector/udp_queues_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func (c *udpQueuesCollector) Update(ch chan<- prometheus.Metric) error {
if errors.Is(errIPv4, os.ErrNotExist) {
level.Debug(c.logger).Log("msg", "not collecting ipv4 based metrics")
} else {
return fmt.Errorf("couldn't get upd queued bytes: %w", errIPv4)
return fmt.Errorf("couldn't get udp queued bytes: %w", errIPv4)
}
}

Expand All @@ -77,7 +77,7 @@ func (c *udpQueuesCollector) Update(ch chan<- prometheus.Metric) error {
if errors.Is(errIPv6, os.ErrNotExist) {
level.Debug(c.logger).Log("msg", "not collecting ipv6 based metrics")
} else {
return fmt.Errorf("couldn't get upd6 queued bytes: %w", errIPv6)
return fmt.Errorf("couldn't get udp6 queued bytes: %w", errIPv6)
}
}

Expand Down

0 comments on commit b9b1d4e

Please sign in to comment.