-
Notifications
You must be signed in to change notification settings - Fork 225
/
gossip_stats.go
82 lines (64 loc) · 2.68 KB
/
gossip_stats.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// (c) 2022, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package evm
import "github.com/ava-labs/subnet-evm/metrics"
var _ GossipStats = &gossipStats{}
// GossipStats contains methods for updating incoming and outgoing gossip stats.
type GossipStats interface {
GossipReceivedStats
GossipSentStats
}
// GossipReceivedStats groups functions for incoming gossip stats.
type GossipReceivedStats interface {
IncEthTxsGossipReceived()
// new vs. known txs received
IncEthTxsGossipReceivedKnown()
IncEthTxsGossipReceivedNew()
}
// GossipSentStats groups functions for outgoing gossip stats.
type GossipSentStats interface {
IncEthTxsGossipSent()
// regossip
IncEthTxsRegossipQueued()
IncEthTxsRegossipQueuedLocal(count int)
IncEthTxsRegossipQueuedRemote(count int)
}
// gossipStats implements stats for incoming and outgoing gossip stats.
type gossipStats struct {
// messages
ethTxsGossipSent metrics.Counter
ethTxsGossipReceived metrics.Counter
// regossip
ethTxsRegossipQueued metrics.Counter
ethTxsRegossipQueuedLocal metrics.Counter
ethTxsRegossipQueuedRemote metrics.Counter
// new vs. known txs received
ethTxsGossipReceivedKnown metrics.Counter
ethTxsGossipReceivedNew metrics.Counter
}
func NewGossipStats() GossipStats {
return &gossipStats{
ethTxsGossipSent: metrics.GetOrRegisterCounter("gossip_eth_txs_sent", nil),
ethTxsGossipReceived: metrics.GetOrRegisterCounter("gossip_eth_txs_received", nil),
ethTxsRegossipQueued: metrics.GetOrRegisterCounter("regossip_eth_txs_queued_attempts", nil),
ethTxsRegossipQueuedLocal: metrics.GetOrRegisterCounter("regossip_eth_txs_queued_local_tx_count", nil),
ethTxsRegossipQueuedRemote: metrics.GetOrRegisterCounter("regossip_eth_txs_queued_remote_tx_count", nil),
ethTxsGossipReceivedKnown: metrics.GetOrRegisterCounter("gossip_eth_txs_received_known", nil),
ethTxsGossipReceivedNew: metrics.GetOrRegisterCounter("gossip_eth_txs_received_new", nil),
}
}
// incoming messages
func (g *gossipStats) IncEthTxsGossipReceived() { g.ethTxsGossipReceived.Inc(1) }
// new vs. known txs received
func (g *gossipStats) IncEthTxsGossipReceivedKnown() { g.ethTxsGossipReceivedKnown.Inc(1) }
func (g *gossipStats) IncEthTxsGossipReceivedNew() { g.ethTxsGossipReceivedNew.Inc(1) }
// outgoing messages
func (g *gossipStats) IncEthTxsGossipSent() { g.ethTxsGossipSent.Inc(1) }
// regossip
func (g *gossipStats) IncEthTxsRegossipQueued() { g.ethTxsRegossipQueued.Inc(1) }
func (g *gossipStats) IncEthTxsRegossipQueuedLocal(count int) {
g.ethTxsRegossipQueuedLocal.Inc(int64(count))
}
func (g *gossipStats) IncEthTxsRegossipQueuedRemote(count int) {
g.ethTxsRegossipQueuedRemote.Inc(int64(count))
}