diff options
author | Jacob Erlbeck <jerlbeck@sysmocom.de> | 2015-11-27 18:54:58 +0100 |
---|---|---|
committer | Jacob Erlbeck <jerlbeck@sysmocom.de> | 2015-12-08 10:33:04 +0100 |
commit | af5bad5ed00f0d21617c34f0e4e96eb2fd977a02 (patch) | |
tree | b7b6a76fa48438df508a457887816fa4048a875a /src/vty | |
parent | 90e614f7ccb0902e6ddb510bb10f78eb14a13d94 (diff) |
stat: Explicitly support stat_items without unit
Add OSMO_STAT_ITEM_NO_UNIT for stat items without an unit. The
statsd reporter uses gauges ("g") to report them.
Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/vty')
-rw-r--r-- | src/vty/utils.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vty/utils.c b/src/vty/utils.c index b15c8d84..3a0f138b 100644 --- a/src/vty/utils.c +++ b/src/vty/utils.c @@ -87,11 +87,14 @@ static int osmo_stat_item_handler( { struct vty_out_context *vctx = vctx_; struct vty *vty = vctx->vty; + const char *unit = + item->desc->unit != OSMO_STAT_ITEM_NO_UNIT ? + item->desc->unit : ""; vty_out(vty, " %s%s: %8" PRIi32 " %s%s", vctx->prefix, item->desc->description, osmo_stat_item_get_last(item), - item->desc->unit, VTY_NEWLINE); + unit, VTY_NEWLINE); return 0; } |