mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
4229b466ae
* Add sync committee pkg * Fix err variable namings
18 lines
545 B
Go
18 lines
545 B
Go
package synccommittee
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
)
|
|
|
|
var (
|
|
savedSyncCommitteeMessageTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "saved_sync_committee_message_total",
|
|
Help: "The number of saved sync committee message total.",
|
|
})
|
|
savedSyncCommitteeContributionTotal = promauto.NewCounter(prometheus.CounterOpts{
|
|
Name: "saved_sync_committee_contribution_total",
|
|
Help: "The number of saved sync committee contribution total.",
|
|
})
|
|
)
|