mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
78968c1e29
* Add individual p2p host counts * Merge branch 'master' into p2pmetrics * Merge branch 'master' into p2pmetrics * Merge branch 'master' into p2pmetrics * Merge branch 'master' into p2pmetrics
31 lines
1.0 KiB
Go
31 lines
1.0 KiB
Go
package p2p
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
)
|
|
|
|
var (
|
|
p2pTopicPeerCount = promauto.NewGaugeVec(prometheus.GaugeOpts{
|
|
Name: "p2p_topic_peer_count",
|
|
Help: "The number of peers subscribed to a given topic.",
|
|
},
|
|
[]string{"topic"})
|
|
p2pPeerCount = promauto.NewGaugeVec(prometheus.GaugeOpts{
|
|
Name: "p2p_peer_count",
|
|
Help: "The number of peers in a given state.",
|
|
},
|
|
[]string{"state"})
|
|
)
|
|
|
|
func (s *Service) updateMetrics() {
|
|
for topic := range GossipTopicMappings {
|
|
topic += s.Encoding().ProtocolSuffix()
|
|
p2pTopicPeerCount.WithLabelValues(topic).Set(float64(len(s.pubsub.ListPeers(topic))))
|
|
}
|
|
p2pPeerCount.WithLabelValues("Connected").Set(float64(len(s.peers.Connected())))
|
|
p2pPeerCount.WithLabelValues("Disconnected").Set(float64(len(s.peers.Disconnected())))
|
|
p2pPeerCount.WithLabelValues("Connecting").Set(float64(len(s.peers.Connecting())))
|
|
p2pPeerCount.WithLabelValues("Disconnecting").Set(float64(len(s.peers.Disconnecting())))
|
|
}
|