Skip to content

EntropyEngine::Networking::ConnectionManager::MetricsCounters

EntropyEngine::Networking::ConnectionManager::MetricsCounters

Section titled “EntropyEngine::Networking::ConnectionManager::MetricsCounters”
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.
std::atomic< uint64_t > wouldBlockSends {0};

Count of WouldBlock from trySend().

std::atomic< uint64_t > totalMessagesSent {0};

Total messages sent.

std::atomic< uint64_t > totalMessagesReceived {0};

Total messages received.

std::atomic< uint64_t > totalBytesSent {0};

Total bytes sent across all connections.

std::atomic< uint64_t > totalBytesReceived {0};

Total bytes received across all connections.

std::atomic< uint64_t > connectionsOpened {0};

Count of successful connections.

std::atomic< uint64_t > connectionsFailed {0};

Count of failed connection attempts.

std::atomic< uint64_t > connectionsClosed {0};

Count of closed connections.


Updated on 2026-01-26 at 17:14:35 -0500