Browse Source

p2p: fix priority queue bytes pending calculation (#7120)

This metric describes itself as 'pending' but never actual decrements when the messages are removed from the queue.

This change fixes that by decrementing the metric when the data is removed from the queue.
pull/7122/head
William Banfield 3 years ago
committed by GitHub
parent
commit
ff7b0e638e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      internal/p2p/pqueue.go

+ 5
- 2
internal/p2p/pqueue.go View File

@ -167,13 +167,12 @@ func (s *pqScheduler) process() {
timestamp: time.Now().UTC(), timestamp: time.Now().UTC(),
} }
s.metrics.PeerPendingSendBytes.With("peer_id", string(pqEnv.envelope.To)).Add(float64(pqEnv.size))
// enqueue // enqueue
// Check if we have sufficient capacity to simply enqueue the incoming // Check if we have sufficient capacity to simply enqueue the incoming
// Envelope. // Envelope.
if s.size+pqEnv.size <= s.capacity { if s.size+pqEnv.size <= s.capacity {
s.metrics.PeerPendingSendBytes.With("peer_id", string(pqEnv.envelope.To)).Add(float64(pqEnv.size))
// enqueue the incoming Envelope // enqueue the incoming Envelope
s.push(pqEnv) s.push(pqEnv)
} else { } else {
@ -213,6 +212,8 @@ func (s *pqScheduler) process() {
"capacity", s.capacity, "capacity", s.capacity,
) )
s.metrics.PeerPendingSendBytes.With("peer_id", string(pqEnvTmp.envelope.To)).Add(float64(-pqEnvTmp.size))
// dequeue/drop from the priority queue // dequeue/drop from the priority queue
heap.Remove(s.pq, pqEnvTmp.index) heap.Remove(s.pq, pqEnvTmp.index)
@ -257,6 +258,8 @@ func (s *pqScheduler) process() {
s.metrics.PeerSendBytesTotal.With( s.metrics.PeerSendBytesTotal.With(
"chID", chIDStr, "chID", chIDStr,
"peer_id", string(pqEnv.envelope.To)).Add(float64(pqEnv.size)) "peer_id", string(pqEnv.envelope.To)).Add(float64(pqEnv.size))
s.metrics.PeerPendingSendBytes.With(
"peer_id", string(pqEnv.envelope.To)).Add(float64(-pqEnv.size))
select { select {
case s.dequeueCh <- pqEnv.envelope: case s.dequeueCh <- pqEnv.envelope:
case <-s.closer.Done(): case <-s.closer.Done():


Loading…
Cancel
Save