Cache metricsfamily help text (#3175)
Some checks failed
golangci-lint / lint (push) Has been cancelled

Signed-off-by: Mark Knapp <mknapp@hudson-trading.com>
This commit is contained in:
mknapphrt 2024-11-07 15:46:38 -05:00 committed by GitHub
parent 07ee8efaa4
commit 0fddfd1ba5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -253,10 +253,16 @@ func (c *textFileCollector) Update(ch chan<- prometheus.Metric) error {
}
}
mfHelp := make(map[string]*string)
for _, mf := range parsedFamilies {
if mf.Help == nil {
if help, ok := mfHelp[*mf.Name]; ok {
mf.Help = help
continue
}
help := fmt.Sprintf("Metric read from %s", strings.Join(metricsNamesToFiles[*mf.Name], ", "))
mf.Help = &help
mfHelp[*mf.Name] = &help
}
}