mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
14 lines
292 B
Go
14 lines
292 B
Go
|
package state
|
||
|
|
||
|
import (
|
||
|
"github.com/prometheus/client_golang/prometheus"
|
||
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
StateCount = promauto.NewGauge(prometheus.GaugeOpts{
|
||
|
Name: "beacon_state_count",
|
||
|
Help: "Count the number of active beacon state objects.",
|
||
|
})
|
||
|
)
|