laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-msc/+/28107 )
Change subject: call rate_ctr_init() to make rate counters work properly ......................................................................
call rate_ctr_init() to make rate counters work properly
The existing rate counters per-minute/hour/day values were never computed as the related timer was never started...
Change-Id: I27282051a6da5d1e1a25981712fbe4c4a6378dea --- M src/osmo-msc/msc_main.c 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve fixeria: Looks good to me, approved
diff --git a/src/osmo-msc/msc_main.c b/src/osmo-msc/msc_main.c index 9657c71..b5496fb 100644 --- a/src/osmo-msc/msc_main.c +++ b/src/osmo-msc/msc_main.c @@ -576,6 +576,7 @@ osmo_fsm_log_addr(true);
osmo_stats_init(tall_msc_ctx); + rate_ctr_init(tall_msc_ctx);
/* For --version, vty_init() must be called before handling options */ vty_init(&msc_vty_info);