1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

fix typos

This commit is contained in:
Steffen Vogel 2017-08-31 11:31:23 +02:00
parent 2001c49d53
commit 06d279515e

View file

@ -143,10 +143,10 @@ json_t * stats_json_periodic(struct stats *s, struct path *p)
{
return json_pack("{ s: s, s: f, s: f, s: i, s: i }"
"path", path_name(p),
"owd", hist_last(&s->histograms[STATS_OWD])
"owd", hist_last(&s->histograms[STATS_OWD]),
"rate", 1.0 / hist_last(&s->histograms[STATS_GAP_SAMPLE]),
"dropped", hist_total(&s->histograms[STATS_REORDERED]),
"skipped", host_ttotal(&s->histograms[STATS_SKIPPED])
"skipped", hist_total(&s->histograms[STATS_SKIPPED])
);
}