2019-04-05 21:55:11 +00:00
|
|
|
package attestation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
totalAttestationSeen = promauto.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Name: "total_seen_attestations",
|
|
|
|
Help: "Total number of attestations seen by the validators",
|
|
|
|
})
|
2019-05-11 02:21:26 +00:00
|
|
|
|
|
|
|
attestationPoolLimit = promauto.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Name: "attestation_pool_limit",
|
|
|
|
Help: "The limit of the attestation pool",
|
|
|
|
})
|
|
|
|
attestationPoolSize = promauto.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Name: "attestation_pool_size",
|
|
|
|
Help: "The current size of the attestation pool",
|
|
|
|
})
|
2019-04-05 21:55:11 +00:00
|
|
|
)
|