Browse Source

systemd: Remove unneeded/unhandled error returns (#1035)

Signed-off-by: Julius Volz <julius.volz@gmail.com>
pull/1038/head
Julius Volz 6 years ago committed by GitHub
parent
commit
2c52b8c761
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      collector/systemd_linux.go

6
collector/systemd_linux.go

@ -148,7 +148,7 @@ func (c *systemdCollector) collectUnitStatusMetrics(ch chan<- prometheus.Metric,
}
}
func (c *systemdCollector) collectSockets(ch chan<- prometheus.Metric, units []unit) error {
func (c *systemdCollector) collectSockets(ch chan<- prometheus.Metric, units []unit) {
for _, unit := range units {
if !strings.HasSuffix(unit.Name, ".socket") {
continue
@ -164,7 +164,6 @@ func (c *systemdCollector) collectSockets(ch chan<- prometheus.Metric, units []u
c.socketRefusedConnectionsDesc, prometheus.GaugeValue,
float64(unit.refusedConnections), unit.Name)
}
return nil
}
func (c *systemdCollector) collectUnitStartTimeMetrics(ch chan<- prometheus.Metric, units []unit) {
@ -175,7 +174,7 @@ func (c *systemdCollector) collectUnitStartTimeMetrics(ch chan<- prometheus.Metr
}
}
func (c *systemdCollector) collectTimers(ch chan<- prometheus.Metric, units []unit) error {
func (c *systemdCollector) collectTimers(ch chan<- prometheus.Metric, units []unit) {
for _, unit := range units {
if !strings.HasSuffix(unit.Name, ".timer") {
continue
@ -185,7 +184,6 @@ func (c *systemdCollector) collectTimers(ch chan<- prometheus.Metric, units []un
c.timerLastTriggerDesc, prometheus.GaugeValue,
float64(unit.lastTriggerUsec)/1e6, unit.Name)
}
return nil
}
func (c *systemdCollector) collectSummaryMetrics(ch chan<- prometheus.Metric, summary map[string]float64) {

Loading…
Cancel
Save