fix: first values are now 0 for _diff metrics

This commit is contained in:
brinkcoder 2025-03-07 15:30:56 +01:00
parent b12e471407
commit 139e5a3e29

View File

@ -154,8 +154,15 @@ func (m *IOstatCollector) Init(config json.RawMessage) error {
continue continue
} }
values := make(map[string]int64) values := make(map[string]int64)
for mname := range m.matches { for mname, idx := range m.matches {
values[mname] = 0 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{ m.devices[device] = IOstatCollectorEntry{
tags: map[string]string{ tags: map[string]string{