aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/metrics.go
diff options
context:
space:
mode:
Diffstat (limited to 'p2p/metrics.go')
-rw-r--r--p2p/metrics.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/p2p/metrics.go b/p2p/metrics.go
index 8bd902286..4ed164431 100644
--- a/p2p/metrics.go
+++ b/p2p/metrics.go
@@ -37,6 +37,8 @@ const (
MetricsInboundTraffic = "p2p/InboundTraffic" // Name for the registered inbound traffic meter
MetricsOutboundConnects = "p2p/OutboundConnects" // Name for the registered outbound connects meter
MetricsOutboundTraffic = "p2p/OutboundTraffic" // Name for the registered outbound traffic meter
+ MetricsLatency = "p2p/Latency" // Name for the registered Latency gauge
+ MetricsRelativeLatency = "p2p/RelativeLatency" // Name for the registered Relative Latency gauge
MeteredPeerLimit = 1024 // This amount of peers are individually metered
)
@@ -52,6 +54,9 @@ var (
meteredPeerFeed event.Feed // Event feed for peer metrics
meteredPeerCount int32 // Actually stored peer connection count
+
+ peerLatency = metrics.NewRegisteredGauge(MetricsLatency, nil) // Gauge latency
+ peerRelativeLatency = metrics.NewRegisteredGauge(MetricsRelativeLatency, nil) // Gauge Relative latency
)
// MeteredPeerEventType is the type of peer events emitted by a metered connection.