mirror of https://github.com/hashicorp/consul
agent/cache: send the total entries count on eviction to go-metrics
parent
e0d964188c
commit
194b256861
|
@ -471,9 +471,11 @@ func (c *Cache) runExpiryLoop() {
|
||||||
// have it treated as a new value so that the TTL is extended.
|
// have it treated as a new value so that the TTL is extended.
|
||||||
entry.HeapIndex = -1
|
entry.HeapIndex = -1
|
||||||
|
|
||||||
c.entriesLock.Unlock()
|
// Set some metrics
|
||||||
|
|
||||||
metrics.IncrCounter([]string{"consul", "cache", "evict_expired"}, 1)
|
metrics.IncrCounter([]string{"consul", "cache", "evict_expired"}, 1)
|
||||||
|
metrics.SetGauge([]string{"consul", "cache", "entries_count"}, float32(len(c.entries)))
|
||||||
|
|
||||||
|
c.entriesLock.Unlock()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue