blob: 7797e62d92bde6ce7ea8a72d36243efa3d9ace02 [file] [log] [blame]
Harald Welte3fb0b6f2010-05-19 19:02:52 +02001/* utility routines for printing common objects in the Osmocom world */
2
3/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
4 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
23#include <stdint.h>
24#include <inttypes.h>
25
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010026#include <osmocom/core/linuxlist.h>
27#include <osmocom/core/talloc.h>
28#include <osmocom/core/timer.h>
29#include <osmocom/core/rate_ctr.h>
Harald Welte3fb0b6f2010-05-19 19:02:52 +020030
31#include <osmocom/vty/vty.h>
32
33void vty_out_rate_ctr_group(struct vty *vty, const char *prefix,
34 struct rate_ctr_group *ctrg)
35{
36 unsigned int i;
37
38 vty_out(vty, "%s%s:%s", prefix, ctrg->desc->group_description, VTY_NEWLINE);
39 for (i = 0; i < ctrg->desc->num_ctr; i++) {
40 struct rate_ctr *ctr = &ctrg->ctr[i];
41 vty_out(vty, " %s%s: %8" PRIu64 " "
42 "(%" PRIu64 "/s %" PRIu64 "/m %" PRIu64 "/h %" PRIu64 "/d)%s",
43 prefix, ctrg->desc->ctr_desc[i].description, ctr->current,
44 ctr->intv[RATE_CTR_INTV_SEC].rate,
45 ctr->intv[RATE_CTR_INTV_MIN].rate,
46 ctr->intv[RATE_CTR_INTV_HOUR].rate,
47 ctr->intv[RATE_CTR_INTV_DAY].rate,
48 VTY_NEWLINE);
49 };
50}