mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
added proper units for statistics
This commit is contained in:
parent
bd238dfebd
commit
f8b75d084c
1 changed files with 6 additions and 6 deletions
12
lib/stats.c
12
lib/stats.c
|
@ -24,12 +24,12 @@ static struct stats_desc {
|
|||
double resolution;
|
||||
} hist;
|
||||
} stats_table[] = {
|
||||
{ "skipped", "", "skipped messages by hooks", {0, 0, -1, }},
|
||||
{ "dropped", "", "dropped messages because of reordering", {0, 0, -1, }},
|
||||
{ "gap_sequence", "", "sequence number displacement of received messages", {-10, 10, 20, }},
|
||||
{ "gap_sample", "", "inter message timestamps (as sent by remote)", {90e-3, 110e-3, 1e-3, }},
|
||||
{ "gap_received", "", "Histogram for inter message arrival time (as seen by this instance)", {90e-3, 110e-3, 1e-3, }},
|
||||
{ "owd", "s", "Histogram for one-way-delay (OWD) of received messages", {0, 1, 100e-3, }}
|
||||
{ "skipped", "samples", "skipped samples by hooks", {0, 0, -1, }},
|
||||
{ "dropped", "samples", "dropped messages because of reordering", {0, 0, -1, }},
|
||||
{ "gap_sequence", "samples", "sequence number displacement of received messages", {-10, 10, 20, }},
|
||||
{ "gap_sample", "seconds", "inter message timestamps (as sent by remote)", {90e-3, 110e-3, 1e-3, }},
|
||||
{ "gap_received", "seconds", "Histogram for inter message arrival time (as seen by this instance)", {90e-3, 110e-3, 1e-3, }},
|
||||
{ "owd", "seconds", "Histogram for one-way-delay (OWD) of received messages", {0, 1, 100e-3, }}
|
||||
};
|
||||
|
||||
int stats_init(struct stats *s)
|
||||
|
|
Loading…
Add table
Reference in a new issue