mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
f9303ca2e4
* Clean ups * Gazelle
21 lines
631 B
Go
21 lines
631 B
Go
package cache
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
)
|
|
|
|
var (
|
|
// epochSpansCacheSize defines the max number of epoch spans the cache can hold.
|
|
epochSpansCacheSize = 256
|
|
// Metrics for the span cache.
|
|
epochSpansCacheHit = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "epoch_spans_cache_hit",
|
|
Help: "The total number of cache hits on the epoch spans cache.",
|
|
})
|
|
epochSpansCacheMiss = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "epoch_spans_cache_miss",
|
|
Help: "The total number of cache misses on the epoch spans cache.",
|
|
})
|
|
)
|