diff options
author | Dave Barach <dave@barachs.net> | 2016-03-31 15:32:54 -0400 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2016-04-12 03:44:46 +0000 |
commit | cbed90c8cbf8449ff8ed6da08ec248f1e49a374d (patch) | |
tree | 6f4934bf50a7e5fe3a4d9c53300e0cdd1804e54a /vlib | |
parent | ecec279029a8a507483bc54ace3dca7f623f3fb7 (diff) |
Add a configurable "significant error" metric
Change-Id: Idda59272a029ffcbc029f9bb167508d7bd5e6e21
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'vlib')
-rw-r--r-- | vlib/vlib/error.c | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/vlib/vlib/error.c b/vlib/vlib/error.c index b04ac916d8e..661530803b7 100644 --- a/vlib/vlib/error.c +++ b/vlib/vlib/error.c @@ -215,12 +215,18 @@ show_errors (vlib_main_t * vm, int verbose = 0; u64 * sums = 0; - if (unformat (input, "verbose")) + if (unformat (input, "verbose %d", &verbose)) + ; + else if (unformat (input, "verbose")) verbose = 1; vec_validate(sums, vec_len(em->counters)); - vlib_cli_output (vm, "%=16s%=40s%=20s", "Count", "Node", "Reason"); + if (verbose) + vlib_cli_output (vm, "%=10s%=40s%=20s%=6s", "Count", "Node", "Reason", + "Index"); + else + vlib_cli_output (vm, "%=10s%=40s%=6s", "Count", "Node", "Reason"); foreach_vlib_main(({ em = &this_vlib_main->error_main; @@ -239,10 +245,15 @@ show_errors (vlib_main_t * vm, c -= em->counters_last_clear[i]; sums[i] += c; - if (c == 0 || !verbose) + if (c == 0 && verbose < 2) continue; - vlib_cli_output (vm, "%16Ld%=40v%s", c, n->name, em->error_strings_heap[i]); + if (verbose) + vlib_cli_output (vm, "%10Ld%=40v%=20s%=6d", c, n->name, + em->error_strings_heap[i], i); + else + vlib_cli_output (vm, "%10d%=40v%s", c, n->name, + em->error_strings_heap[i]); } } index++; @@ -258,7 +269,11 @@ show_errors (vlib_main_t * vm, { i = n->error_heap_index + code; if (sums[i]) - vlib_cli_output (vm, "%16Ld%=40v%s", sums[i], n->name, em->error_strings_heap[i]); + { + if (verbose) + vlib_cli_output (vm, "%10Ld%=40v%=20s%=10d", sums[i], n->name, + em->error_strings_heap[i], i); + } } } |