Delete mountpoint when it vanishes, not just its data

This commit is contained in:
Thomas Roehl 2025-03-15 03:48:38 +01:00
parent 0e57c8db1c
commit 5762afa40b

View File

@ -9,8 +9,8 @@ import (
"strings"
"time"
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
lp "github.com/ClusterCockpit/cc-lib/ccMessage"
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
)
// These are the fields we read from the JSON configuration
@ -171,7 +171,7 @@ func (m *NfsIOStatCollector) Read(interval time.Duration, output chan lp.CCMessa
}
}
if !found {
m.data[mntpoint] = nil
delete(m.data, mntpoint)
}
}
}