mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-25 13:44:05 -08:00
retrieval: fix memory leak in scrape cache
This commit is contained in:
parent
ca2b68889b
commit
2368d2c45b
|
@ -508,6 +508,11 @@ func (c *scrapeCache) getRef(met string) (string, bool) {
|
|||
}
|
||||
|
||||
func (c *scrapeCache) addRef(met, ref string, lset labels.Labels) {
|
||||
// Clean up the label set cache before overwriting the ref for a previously seen
|
||||
// metric representation. It won't be caught by the cleanup in iterDone otherwise.
|
||||
if e, ok := c.refs[met]; ok {
|
||||
delete(c.lsets, e.ref)
|
||||
}
|
||||
c.refs[met] = &refEntry{ref: ref, lastIter: c.iter}
|
||||
// met is the raw string the metric was ingested as. The label set is not ordered
|
||||
// and thus it's not suitable to uniquely identify cache entries.
|
||||
|
|
Loading…
Reference in a new issue