prysm-pulse/shared/p2p/monitoring.go
Preston Van Loon 0559d01261
Add support for connecting via relay nodes (#827)
* Preliminary support for relay nodes

* lint

* Add comment, remove TODO

* work on relay address factory

* dial relay node, if available

* forgot new files

* fix service registry breakage

* added logging

* Added a peer count with prometheus

* always start mDNS

* fix lint
2018-11-25 11:55:02 -05:00

40 lines
675 B
Go

package p2p
import (
"context"
"time"
"github.com/libp2p/go-libp2p-host"
"github.com/prometheus/client_golang/prometheus"
)
var (
peerCountMetric = prometheus.NewGauge(prometheus.GaugeOpts{
Name: "p2p_peer_count",
Help: "The number of currently connected peers",
})
)
func init() {
prometheus.MustRegister(peerCountMetric)
}
func startPeerWatcher(ctx context.Context, h host.Host) {
go (func() {
for {
select {
case <-ctx.Done():
return
default:
// Update peer count (minus ourselves)
peerCountMetric.Set(float64(len(h.Peerstore().Peers()) - 1))
// Wait 1 second to update again
time.Sleep(1 * time.Second)
}
}
})()
}