diff options
author | Stefan Sperling <ssperling@sysmocom.de> | 2018-10-29 17:50:30 +0100 |
---|---|---|
committer | Stefan Sperling <ssperling@sysmocom.de> | 2018-10-29 17:50:30 +0100 |
commit | 84eb1ab1535237865cba646feef154e7919bc784 (patch) | |
tree | 6180a8b965fddde3b7e19f3fdc397589a5233ff5 | |
parent | 7c75ffb563cbfba352330003ba5de20c586b14b8 (diff) |
make 'show rate-counters' show group index
Show each rate counter group's index in the output of the
'show rate-counters' command, to provide some way of telling
apart distinct instances of the same rate counter group.
This is not a very user-friendly UI because these indices are
generated internally by libosmocore and/or applications, so
users cannot easily assign meaning to these indices. However,
the current rate counter implementation doesn't allow for more.
Change-Id: Ieb151239407e4b2f8859fefec8d0670f5ddf908a
Related: OS#3674
-rw-r--r-- | src/vty/stats_vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vty/stats_vty.c b/src/vty/stats_vty.c index 62153f3c..c9110879 100644 --- a/src/vty/stats_vty.c +++ b/src/vty/stats_vty.c @@ -533,7 +533,7 @@ DEFUN(show_stats_asciidoc_table, static int rate_ctr_group_handler(struct rate_ctr_group *ctrg, void *sctx_) { struct vty *vty = sctx_; - vty_out(vty, "%s:%s", ctrg->desc->group_description, VTY_NEWLINE); + vty_out(vty, "%s %u:%s", ctrg->desc->group_description, ctrg->idx, VTY_NEWLINE); vty_out_rate_ctr_group_fmt(vty, "%25n: %10c (%S/s %M/m %H/h %D/d) %d", ctrg); return 0; } |