EntropyEngine::Networking::ConnectionManager::MetricsCounters
EntropyEngine::Networking::ConnectionManager::MetricsCounters
Section titled “EntropyEngine::Networking::ConnectionManager::MetricsCounters”Public Attributes
Section titled “Public Attributes”| Name | |
|---|---|
| std::atomic< uint64_t > | wouldBlockSends Count of WouldBlock from trySend(). |
| std::atomic< uint64_t > | totalMessagesSent Total messages sent. |
| std::atomic< uint64_t > | totalMessagesReceived Total messages received. |
| std::atomic< uint64_t > | totalBytesSent Total bytes sent across all connections. |
| std::atomic< uint64_t > | totalBytesReceived Total bytes received across all connections. |
| std::atomic< uint64_t > | connectionsOpened Count of successful connections. |
| std::atomic< uint64_t > | connectionsFailed Count of failed connection attempts. |
| std::atomic< uint64_t > | connectionsClosed Count of closed connections. |
Public Attributes Documentation
Section titled “Public Attributes Documentation”variable wouldBlockSends
Section titled “variable wouldBlockSends”std::atomic< uint64_t > wouldBlockSends {0};Count of WouldBlock from trySend().
variable totalMessagesSent
Section titled “variable totalMessagesSent”std::atomic< uint64_t > totalMessagesSent {0};Total messages sent.
variable totalMessagesReceived
Section titled “variable totalMessagesReceived”std::atomic< uint64_t > totalMessagesReceived {0};Total messages received.
variable totalBytesSent
Section titled “variable totalBytesSent”std::atomic< uint64_t > totalBytesSent {0};Total bytes sent across all connections.
variable totalBytesReceived
Section titled “variable totalBytesReceived”std::atomic< uint64_t > totalBytesReceived {0};Total bytes received across all connections.
variable connectionsOpened
Section titled “variable connectionsOpened”std::atomic< uint64_t > connectionsOpened {0};Count of successful connections.
variable connectionsFailed
Section titled “variable connectionsFailed”std::atomic< uint64_t > connectionsFailed {0};Count of failed connection attempts.
variable connectionsClosed
Section titled “variable connectionsClosed”std::atomic< uint64_t > connectionsClosed {0};Count of closed connections.
Updated on 2026-01-26 at 17:14:35 -0500