Files
reth/crates/net/network/src/metrics.rs
Emilia Hane c0f3d38ad9 Speed up request buffered hashes (#6318)
Co-authored-by: Bjerg <onbjerg@users.noreply.github.com>
Co-authored-by: back <104515688+justcode740@users.noreply.github.com>
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2024-02-13 18:57:43 +00:00

171 lines
6.9 KiB
Rust

use reth_eth_wire::DisconnectReason;
use reth_metrics::{
metrics::{Counter, Gauge},
Metrics,
};
/// Scope for monitoring transactions sent from the manager to the tx manager
pub(crate) const NETWORK_POOL_TRANSACTIONS_SCOPE: &str = "network.pool.transactions";
/// Metrics for the entire network, handled by NetworkManager
#[derive(Metrics)]
#[metrics(scope = "network")]
pub struct NetworkMetrics {
/// Number of currently connected peers
pub(crate) connected_peers: Gauge,
/// Number of currently backed off peers
pub(crate) backed_off_peers: Gauge,
/// Number of peers known to the node
pub(crate) tracked_peers: Gauge,
/// Cumulative number of failures of pending sessions
pub(crate) pending_session_failures: Counter,
/// Total number of sessions closed
pub(crate) closed_sessions: Counter,
/// Number of active incoming connections
pub(crate) incoming_connections: Gauge,
/// Number of active outgoing connections
pub(crate) outgoing_connections: Gauge,
/// Total Number of incoming connections handled
pub(crate) total_incoming_connections: Counter,
/// Total Number of outgoing connections established
pub(crate) total_outgoing_connections: Counter,
/// Number of invalid/malformed messages received from peers
pub(crate) invalid_messages_received: Counter,
/// Number of Eth Requests dropped due to channel being at full capacity
pub(crate) total_dropped_eth_requests_at_full_capacity: Counter,
}
/// Metrics for SessionManager
#[derive(Metrics)]
#[metrics(scope = "network")]
pub struct SessionManagerMetrics {
/// Number of dials that resulted in a peer being added to the peerset
pub(crate) total_dial_successes: Counter,
}
/// Metrics for the [`TransactionsManager`](crate::transactions::TransactionsManager).
#[derive(Metrics)]
#[metrics(scope = "network")]
pub struct TransactionsManagerMetrics {
/// Total number of propagated transactions
pub(crate) propagated_transactions: Counter,
/// Total number of reported bad transactions
pub(crate) reported_bad_transactions: Counter,
/// Total number of messages with already seen hashes
pub(crate) messages_with_already_seen_hashes: Counter,
/// Total number of messages with already seen full transactions
pub(crate) messages_with_already_seen_transactions: Counter,
/// Number of transactions about to be imported into the pool.
pub(crate) pending_pool_imports: Gauge,
/// Number of inflight requests at which the
/// [`TransactionPool`](reth_transaction_pool::TransactionPool) is considered to be at
/// capacity. Note, this is not a limit to the number of inflight requests, but a health
/// measure.
pub(crate) capacity_pending_pool_imports: Counter,
/// Currently active outgoing [`GetPooledTransactions`](reth_eth_wire::GetPooledTransactions)
/// requests.
pub(crate) inflight_transaction_requests: Gauge,
/// Number of inflight requests at which the
/// [`TransactionFetcher`](crate::transactions::TransactionFetcher) is considered to be at
/// capacity. Note, this is not a limit to the number of inflight requests, but a health
/// measure.
pub(crate) capacity_inflight_requests: Counter,
/// Hashes in currently active outgoing
/// [`GetPooledTransactions`](reth_eth_wire::GetPooledTransactions) requests.
pub(crate) hashes_inflight_transaction_requests: Gauge,
/// How often we failed to send a request to the peer because the channel was full.
pub(crate) egress_peer_channel_full: Counter,
/// Total number of hashes pending fetch.
pub(crate) hashes_pending_fetch: Gauge,
}
/// Metrics for Disconnection types
///
/// These are just counters, and ideally we would implement these metrics on a peer-by-peer basis,
/// in that we do not double-count peers for `TooManyPeers` if we make an outgoing connection and
/// get disconnected twice
#[derive(Metrics)]
#[metrics(scope = "network")]
pub struct DisconnectMetrics {
/// Number of peer disconnects due to DisconnectRequested (0x00)
pub(crate) disconnect_requested: Counter,
/// Number of peer disconnects due to TcpSubsystemError (0x01)
pub(crate) tcp_subsystem_error: Counter,
/// Number of peer disconnects due to ProtocolBreach (0x02)
pub(crate) protocol_breach: Counter,
/// Number of peer disconnects due to UselessPeer (0x03)
pub(crate) useless_peer: Counter,
/// Number of peer disconnects due to TooManyPeers (0x04)
pub(crate) too_many_peers: Counter,
/// Number of peer disconnects due to AlreadyConnected (0x05)
pub(crate) already_connected: Counter,
/// Number of peer disconnects due to IncompatibleP2PProtocolVersion (0x06)
pub(crate) incompatible: Counter,
/// Number of peer disconnects due to NullNodeIdentity (0x07)
pub(crate) null_node_identity: Counter,
/// Number of peer disconnects due to ClientQuitting (0x08)
pub(crate) client_quitting: Counter,
/// Number of peer disconnects due to UnexpectedHandshakeIdentity (0x09)
pub(crate) unexpected_identity: Counter,
/// Number of peer disconnects due to ConnectedToSelf (0x0a)
pub(crate) connected_to_self: Counter,
/// Number of peer disconnects due to PingTimeout (0x0b)
pub(crate) ping_timeout: Counter,
/// Number of peer disconnects due to SubprotocolSpecific (0x10)
pub(crate) subprotocol_specific: Counter,
}
impl DisconnectMetrics {
/// Increments the proper counter for the given disconnect reason
pub(crate) fn increment(&self, reason: DisconnectReason) {
match reason {
DisconnectReason::DisconnectRequested => self.disconnect_requested.increment(1),
DisconnectReason::TcpSubsystemError => self.tcp_subsystem_error.increment(1),
DisconnectReason::ProtocolBreach => self.protocol_breach.increment(1),
DisconnectReason::UselessPeer => self.useless_peer.increment(1),
DisconnectReason::TooManyPeers => self.too_many_peers.increment(1),
DisconnectReason::AlreadyConnected => self.already_connected.increment(1),
DisconnectReason::IncompatibleP2PProtocolVersion => self.incompatible.increment(1),
DisconnectReason::NullNodeIdentity => self.null_node_identity.increment(1),
DisconnectReason::ClientQuitting => self.client_quitting.increment(1),
DisconnectReason::UnexpectedHandshakeIdentity => self.unexpected_identity.increment(1),
DisconnectReason::ConnectedToSelf => self.connected_to_self.increment(1),
DisconnectReason::PingTimeout => self.ping_timeout.increment(1),
DisconnectReason::SubprotocolSpecific => self.subprotocol_specific.increment(1),
}
}
}
/// Metrics for the EthRequestHandler
#[derive(Metrics)]
#[metrics(scope = "network")]
pub struct EthRequestHandlerMetrics {
/// Number of received headers requests
pub(crate) received_headers_requests: Counter,
/// Number of received bodies requests
pub(crate) received_bodies_requests: Counter,
}