mirror of
https://github.com/prometheus/node_exporter.git
synced 2025-03-05 21:00:12 -08:00
Remove redundant nil check (#2206)
Signed-off-by: computerphilosopher <bspark@jam2in.com>
This commit is contained in:
parent
d85cbaa17c
commit
c861ba93aa
|
@ -142,10 +142,7 @@ func (c *cpuCollector) Update(ch chan<- prometheus.Metric) error {
|
||||||
if err := c.updateStat(ch); err != nil {
|
if err := c.updateStat(ch); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := c.updateThermalThrottle(ch); err != nil {
|
return c.updateThermalThrottle(ch)
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// updateInfo reads /proc/cpuinfo
|
// updateInfo reads /proc/cpuinfo
|
||||||
|
|
|
@ -99,11 +99,7 @@ func NewDrmCollector(logger log.Logger) (Collector, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *drmCollector) Update(ch chan<- prometheus.Metric) error {
|
func (c *drmCollector) Update(ch chan<- prometheus.Metric) error {
|
||||||
if err := c.updateAMDCards(ch); err != nil {
|
return c.updateAMDCards(ch)
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *drmCollector) updateAMDCards(ch chan<- prometheus.Metric) error {
|
func (c *drmCollector) updateAMDCards(ch chan<- prometheus.Metric) error {
|
||||||
|
|
Loading…
Reference in a new issue