aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/metrics.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2019-01-18 22:22:07 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:56 +0800
commit9c9bf2e717af53640833b898c7a319b2f4803242 (patch)
tree4857d9b7bee64d0fa9be9e734262d8e76765c2c3 /p2p/metrics.go
parent5f47911fd3f9f98c69fc585bce64d27f924c90df (diff)
downloaddexon-9c9bf2e717af53640833b898c7a319b2f4803242.tar
dexon-9c9bf2e717af53640833b898c7a319b2f4803242.tar.gz
dexon-9c9bf2e717af53640833b898c7a319b2f4803242.tar.bz2
dexon-9c9bf2e717af53640833b898c7a319b2f4803242.tar.lz
dexon-9c9bf2e717af53640833b898c7a319b2f4803242.tar.xz
dexon-9c9bf2e717af53640833b898c7a319b2f4803242.tar.zst
dexon-9c9bf2e717af53640833b898c7a319b2f4803242.zip
p2p: report latency and relative latency to datadog (#162)
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.