Avoid labels in collector manager loop

This commit is contained in:
Holger Obermaier
2022-01-26 15:54:49 +01:00
parent c193b80083
commit 09b7538479
2 changed files with 22 additions and 15 deletions

View File

@@ -9,6 +9,7 @@ import (
"strconv"
"strings"
"time"
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
)
@@ -93,7 +94,7 @@ func (m *MemstatCollector) Read(interval time.Duration, output chan lp.CCMetric)
for match, name := range m.matches {
if _, exists := m.stats[match]; !exists {
err = errors.New(fmt.Sprintf("Parse error for %s : %s", match, name))
err = fmt.Errorf("Parse error for %s : %s", match, name)
log.Print(err)
continue
}