aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bsc/bts.c
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2022-11-22 17:00:04 +0100
committerpespin <pespin@sysmocom.de>2022-11-23 11:09:05 +0000
commitfd62ac483e0e938afb30d58cfdd6cba69de32cc5 (patch)
treeee16db8ba2a3cc9f521faada2760acb127acaeed /src/osmo-bsc/bts.c
parent1784524392a2d1def2614a136edbbe5b0dd7db16 (diff)
paging: Rename stat t3113 -> paging:t3113
This way all paging related stats can be grouped (more will be added in follow-up commits). Related: SYS#6200 Change-Id: Iede1b6f68df468c7a3b3bf5fce7f68bb08b78832
Diffstat (limited to 'src/osmo-bsc/bts.c')
-rw-r--r--src/osmo-bsc/bts.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/osmo-bsc/bts.c b/src/osmo-bsc/bts.c
index 95e3197f8..0bd5d4a25 100644
--- a/src/osmo-bsc/bts.c
+++ b/src/osmo-bsc/bts.c
@@ -1042,7 +1042,7 @@ void gsm_bts_stats_reset(struct gsm_bts *bts)
osmo_stat_item_set(osmo_stat_item_group_get_item(bts->bts_statg, BTS_STAT_CHAN_SDCCH8_CBCH_TOTAL), 0);
osmo_stat_item_set(osmo_stat_item_group_get_item(bts->bts_statg, BTS_STAT_CHAN_OSMO_DYN_USED), 0);
osmo_stat_item_set(osmo_stat_item_group_get_item(bts->bts_statg, BTS_STAT_CHAN_OSMO_DYN_TOTAL), 0);
- osmo_stat_item_set(osmo_stat_item_group_get_item(bts->bts_statg, BTS_STAT_T3113), 0);
+ osmo_stat_item_set(osmo_stat_item_group_get_item(bts->bts_statg, BTS_STAT_PAGING_T3113), 0);
}
const struct rate_ctr_desc bts_ctr_description[] = {
@@ -1694,8 +1694,8 @@ const struct osmo_stat_item_desc bts_stat_desc[] = {
{ "num_trx:total",
"Number of configured TRX in this BTS",
"" },
- [BTS_STAT_T3113] = \
- { "t3113",
+ [BTS_STAT_PAGING_T3113] = \
+ { "paging:t3113",
"T3113 paging timer",
"s", 60, 0 },
};