You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ReadoutStats.h
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -48,10 +48,14 @@ struct ReadoutStatsCounters {
48
48
std::atomic<uint32_t> logMessagesError; // number of log messages (severity: error)
49
49
std::atomic<uint32_t> currentOrbit; // 1st orbit of current timeframe (last out of aggregator)
50
50
std::atomic<double> bufferUsage[ReadoutStatsMaxItems]; // buffer usage. -1 means not used.
51
+
std::atomic<uint64_t> ddHBFRepacked; // Data Distribution: number of HBF re-packed (HBF overlapping superpages)
52
+
std::atomic<uint64_t> ddBytesCopied; // Data Distribution: number of bytes copied (HBF overlapping superpages)
53
+
std::atomic<uint64_t> ddMemoryPendingBytes; // Data Distribution: number of bytes pending release in ConsumerFMQ (real memory)
54
+
std::atomic<uint64_t> ddPayloadPendingBytes; // Data Distribution: number of bytes pending release in ConsumerFMQ (payload only, not accounting for memory fragmentation overhead)
0 commit comments