aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Iedema <michael@kapsulate.com>2022-02-24 09:25:20 -0800
committerMichael Iedema <michael@kapsulate.com>2022-02-24 09:25:20 -0800
commit296678662a6090f353a52a2b11080fbb9d1fc50d (patch)
treefe06b35e602e2eb01167715c72a836f640615d36
parent95a8d6f2ef31c3a4c706f7819a9c4be4c634b91b (diff)
stats: add BTS index to IPA RSL TCP stats name2022q1
With this change, the new TCP stat names more closely resemble existing RSL related stat names. Change-Id: If7ae7f0e75de37e2e52a8ed724c861f57d0da574
-rw-r--r--src/input/ipaccess.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index b410a7e..8dc1008 100644
--- a/src/input/ipaccess.c
+++ b/src/input/ipaccess.c
@@ -296,6 +296,7 @@ static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg,
struct e1inp_ts *ts;
struct osmo_fd *newbfd;
struct e1inp_line *new_line;
+ char tcp_stat_name[32];
sign_link =
line->ops->sign_link_up(&unit_data, line,
@@ -342,9 +343,9 @@ static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg,
"could not register FD\n");
goto err;
}
- char stat_name[16];
- snprintf(stat_name, sizeof(stat_name), "ipa-rsl-%u", unit_data.trx_id);
- osmo_stats_tcp_osmo_fd_register(newbfd, stat_name);
+ snprintf(tcp_stat_name, sizeof(tcp_stat_name), "bts.%u.ipa-rsl.%u",
+ unit_data.bts_id, unit_data.trx_id);
+ osmo_stats_tcp_osmo_fd_register(newbfd, tcp_stat_name);
e1i_ts = ipaccess_line_ts(newbfd, new_line);
ipaccess_bsc_keepalive_fsm_alloc(e1i_ts, newbfd, "rsl_bsc_to_bts");