mirror of
https://github.com/prometheus/node_exporter.git
synced 2025-01-20 15:29:00 +01:00
fix block nesting bug causing filefd values to never be updated post initial call
This commit is contained in:
parent
a59c71b505
commit
ff7106615e
@ -59,13 +59,13 @@ func (c *fileFDStatCollector) Update(ch chan<- prometheus.Metric) (err error) {
|
||||
Help: fmt.Sprintf("File descriptor statistics: %s.", name),
|
||||
},
|
||||
)
|
||||
}
|
||||
v, err := strconv.ParseFloat(value, 64)
|
||||
if err != nil {
|
||||
return fmt.Errorf("invalid value %s in file-nr: %s", value, err)
|
||||
}
|
||||
c.metrics[name].Set(v)
|
||||
}
|
||||
}
|
||||
for _, m := range c.metrics {
|
||||
m.Collect(ch)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user