ifw-rtmstools 4.0.0
 
Loading...
Searching...
No Matches
receiverToolStats.hpp
Go to the documentation of this file.
1
7
8#pragma once
9
10#include <cstdint>
11
13
15 uint32_t samples_received{0};
16 uint32_t samples_failed{0};
17 uint64_t total_bytes{0};
18 double duration_sec{0.0};
19 double rate_hz{0.0};
20 double min_interval_sec{0.0};
21 double avg_interval_sec{0.0};
22 double max_interval_sec{0.0};
24};
25
26} // namespace ifw::rtmstools::llnetio
Shared statistics structure for RTMS receiver tools.
Definition receiverToolStats.hpp:12
Definition receiverToolStats.hpp:14
uint64_t total_bytes
Definition receiverToolStats.hpp:17
double duration_sec
Definition receiverToolStats.hpp:18
double max_interval_sec
Definition receiverToolStats.hpp:22
double stddev_interval_sec
Definition receiverToolStats.hpp:23
double rate_hz
Definition receiverToolStats.hpp:19
uint32_t samples_failed
Definition receiverToolStats.hpp:16
double min_interval_sec
Definition receiverToolStats.hpp:20
uint32_t samples_received
Definition receiverToolStats.hpp:15
double avg_interval_sec
Definition receiverToolStats.hpp:21