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: doc/releaseNotes.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -577,3 +577,8 @@ This file describes the main feature changes for each readout.exe released versi
577
577
- added readout.numberOfRuns: in standalone mode, number of START/STOP cycles to execute (used for testing).
578
578
- added readout.tfRateLimitMode: can be set to 1 to use number of TF instead of computed TF id for rate throttling. Useful when replaying files with jumps in TF ids. (not needed with autoTimeframeId)
579
579
- added equipment.autoTimeframeId: to force incremental timeframe IDs. Useful when replaying files with jumps in TF ids. BC still used to detect boundaries between TFs.
580
+
581
+
## v2.21.1 - 29/08/2023
582
+
- o2-readout-rawreader: added options logOff and dumpOrbitStats.
583
+
- Bookkeeping: final stats publish at end of run is synchronous.
584
+
- Monitoring: added buffers statistics in bytes: readout.bufferUsage.bytes (in addition to existing readout.bufferUsage.value, as a percentage)
Copy file name to clipboardExpand all lines: src/ReadoutStats.h
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ struct ReadoutStatsCounters {
35
35
std::atomic<uint64_t> bytesReadout;
36
36
std::atomic<uint64_t> bytesRecorded;
37
37
std::atomic<uint64_t> bytesFairMQ;
38
-
std::atomic<double> timestamp;
38
+
std::atomic<double> timestamp;
39
39
std::atomic<double> bytesReadoutRate;
40
40
std::atomic<uint64_t> state;
41
41
std::atomic<uint64_t> pagesPendingFairMQ; // number of pages pending in ConsumerFMQ
@@ -48,14 +48,16 @@ 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> bufferSize[ReadoutStatsMaxItems]; // buffer size in bytes. 0 means not used.
51
52
std::atomic<uint64_t> ddHBFRepacked; // Data Distribution: number of HBF re-packed (HBF overlapping superpages)
52
53
std::atomic<uint64_t> ddBytesCopied; // Data Distribution: number of bytes copied (HBF overlapping superpages)
53
54
std::atomic<uint64_t> ddMemoryPendingBytes; // Data Distribution: number of bytes pending release in ConsumerFMQ (real memory)
54
55
std::atomic<uint64_t> ddPayloadPendingBytes; // Data Distribution: number of bytes pending release in ConsumerFMQ (payload only, not accounting for memory fragmentation overhead)
56
+
std::atomic<uint64_t> runNumber; // current run number (valid only in running state)
0 commit comments