From 5762afa40b7c45ce12749abe31eb68a11134314e Mon Sep 17 00:00:00 2001 From: Thomas Roehl Date: Sat, 15 Mar 2025 03:48:38 +0100 Subject: [PATCH] Delete mountpoint when it vanishes, not just its data --- collectors/nfsiostatMetric.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collectors/nfsiostatMetric.go b/collectors/nfsiostatMetric.go index 28491bb..2696bc0 100644 --- a/collectors/nfsiostatMetric.go +++ b/collectors/nfsiostatMetric.go @@ -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) } } }