From 6042ee92afa44330aa95325821cfac455f82b5dd Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Fri, 15 Jun 2018 14:54:31 +0200 Subject: [PATCH] stats: update descriptions --- lib/stats.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/stats.c b/lib/stats.c index dd10054ad..5719c3c64 100644 --- a/lib/stats.c +++ b/lib/stats.c @@ -38,12 +38,12 @@ static struct stats_desc { const char *desc; int hist_buckets; } stats_metrics[] = { - { "skipped", "samples", "Skipped samples and the distance between them", 25 }, - { "time", "seconds", "The processing time per sample within VILLAsnode", 25 }, - { "reordered", "samples", "Reordered samples and the distance between them", 25 }, - { "gap_sample", "seconds", "Inter-message timestamps (as sent by remote)", 25 }, - { "gap_received", "seconds", "Inter-message arrival time (as seen by this instance)", 25 }, - { "owd", "seconds", "One-way-delay (OWD) of received messages", 25 } + { "skipped", "samples", "Skipped samples and the distance between them", 25 }, + { "proc_time", "seconds", "The processing time per sample within VILLAsnode", 25 }, + { "reordered", "samples", "Reordered samples and the distance between them", 25 }, + { "gap_sent", "seconds", "Inter-message timestamps (as sent by remote)", 25 }, + { "gap_received", "seconds", "Inter-message arrival time (as received by this instance)", 25 }, + { "owd", "seconds", "One-way-delay (OWD) of received messages", 25 } }; int stats_lookup_format(const char *str)