2019-02-24 04:33:10 +00:00
|
|
|
package state
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/hex"
|
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
validatorBalancesGauge = promauto.NewGaugeVec(prometheus.GaugeOpts{
|
|
|
|
Name: "state_validator_balances",
|
|
|
|
Help: "Balances of validators, updated on epoch transition",
|
|
|
|
}, []string{
|
|
|
|
"validator",
|
|
|
|
})
|
2019-03-03 13:18:27 +00:00
|
|
|
lastSlotGauge = prometheus.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Name: "state_last_slot",
|
|
|
|
Help: "Last slot number of the processed state",
|
|
|
|
})
|
2019-03-04 06:53:20 +00:00
|
|
|
lastJustifiedEpochGauge = prometheus.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Name: "state_last_justified_epoch",
|
|
|
|
Help: "Last justified epoch of the processed state",
|
|
|
|
})
|
|
|
|
lastPrevJustifiedEpochGauge = prometheus.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Name: "state_last_prev_justified_epoch",
|
|
|
|
Help: "Last prev justified epoch of the processed state",
|
|
|
|
})
|
|
|
|
lastFinalizedEpochGauge = prometheus.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Name: "state_last_finalized_epoch",
|
|
|
|
Help: "Last finalized epoch of the processed state",
|
|
|
|
})
|
2019-02-24 04:33:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func reportEpochTransitionMetrics(state *pb.BeaconState) {
|
|
|
|
// Validator balances
|
|
|
|
for i, bal := range state.ValidatorBalances {
|
|
|
|
validatorBalancesGauge.WithLabelValues(
|
|
|
|
"0x" + hex.EncodeToString(state.ValidatorRegistry[i].Pubkey), // Validator
|
|
|
|
).Set(float64(bal))
|
|
|
|
}
|
2019-03-03 13:18:27 +00:00
|
|
|
// Slot number
|
|
|
|
lastSlotGauge.Set(float64(state.Slot))
|
2019-03-04 06:53:20 +00:00
|
|
|
// Last justified slot
|
|
|
|
lastJustifiedEpochGauge.Set(float64(state.JustifiedEpoch))
|
|
|
|
// Last previous justified slot
|
|
|
|
lastPrevJustifiedEpochGauge.Set(float64(state.PreviousJustifiedEpoch))
|
|
|
|
// Last finalized slot
|
|
|
|
lastFinalizedEpochGauge.Set(float64(state.FinalizedEpoch))
|
2019-02-24 04:33:10 +00:00
|
|
|
}
|