mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2025-04-05 13:15:55 +02:00
fix: first values are now 0 for _diff metrics
This commit is contained in:
parent
b12e471407
commit
139e5a3e29
@ -154,8 +154,15 @@ func (m *IOstatCollector) Init(config json.RawMessage) error {
|
||||
continue
|
||||
}
|
||||
values := make(map[string]int64)
|
||||
for mname := range m.matches {
|
||||
values[mname] = 0
|
||||
for mname, idx := range m.matches {
|
||||
if idx < len(linefields) {
|
||||
x, err := strconv.ParseInt(linefields[idx], 0, 64)
|
||||
if err == nil {
|
||||
values[mname] = x
|
||||
}
|
||||
} else {
|
||||
values[mname] = 0
|
||||
}
|
||||
}
|
||||
m.devices[device] = IOstatCollectorEntry{
|
||||
tags: map[string]string{
|
||||
|
Loading…
x
Reference in New Issue
Block a user