derp: fix dropReason metrics labels (#12288)

Updates #2745
Updates #7552

Signed-off-by: Spike Curtis <spike@coder.com>
pull/12304/head
Spike Curtis 6 months ago committed by GitHub
parent 32120932a5
commit 0380cbc90d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -329,15 +329,17 @@ func NewServer(privateKey key.NodePrivate, logf logger.Logf) *Server {
s.initMetacert() s.initMetacert()
s.packetsRecvDisco = s.packetsRecvByKind.Get("disco") s.packetsRecvDisco = s.packetsRecvByKind.Get("disco")
s.packetsRecvOther = s.packetsRecvByKind.Get("other") s.packetsRecvOther = s.packetsRecvByKind.Get("other")
s.packetsDroppedReasonCounters = []*expvar.Int{ s.packetsDroppedReasonCounters = []*expvar.Int{
s.packetsDroppedReason.Get("unknown_dest"), dropReasonUnknownDest: s.packetsDroppedReason.Get("unknown_dest"),
s.packetsDroppedReason.Get("unknown_dest_on_fwd"), dropReasonUnknownDestOnFwd: s.packetsDroppedReason.Get("unknown_dest_on_fwd"),
s.packetsDroppedReason.Get("gone_disconnected"), dropReasonGoneDisconnected: s.packetsDroppedReason.Get("gone_disconnected"),
s.packetsDroppedReason.Get("gone_not_here"), dropReasonQueueHead: s.packetsDroppedReason.Get("queue_head"),
s.packetsDroppedReason.Get("queue_head"), dropReasonQueueTail: s.packetsDroppedReason.Get("queue_tail"),
s.packetsDroppedReason.Get("queue_tail"), dropReasonWriteError: s.packetsDroppedReason.Get("write_error"),
s.packetsDroppedReason.Get("write_error"), dropReasonDupClient: s.packetsDroppedReason.Get("dup_client"),
} }
s.packetsDroppedTypeDisco = s.packetsDroppedType.Get("disco") s.packetsDroppedTypeDisco = s.packetsDroppedType.Get("disco")
s.packetsDroppedTypeOther = s.packetsDroppedType.Get("other") s.packetsDroppedTypeOther = s.packetsDroppedType.Get("other")
return s return s

Loading…
Cancel
Save