aboutsummaryrefslogtreecommitdiffstats
path: root/src/counter.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-01-16 12:32:20 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-01-22 16:22:18 +0100
commitaafa7c788e25070e7bd25430c1939d5de128df26 (patch)
tree176dc47c686c30569168ad912eab7a540d311862 /src/counter.c
parent7d7c711a43ce94912bb95e7a0485e81713eed06c (diff)
stats: Add rate_counter for more statistics on the MTP side
Diffstat (limited to 'src/counter.c')
-rw-r--r--src/counter.c65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/counter.c b/src/counter.c
new file mode 100644
index 0000000..6063e7b
--- /dev/null
+++ b/src/counter.c
@@ -0,0 +1,65 @@
+/* Counter for the Link and Link-Set */
+/*
+ * (C) 2011 by Holger Hans Peter Freyther <zecke@selfish.org>
+ * (C) 2011 by On-Waves
+ * All Rights Reserved
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ */
+
+#include <counter.h>
+
+#include <osmocore/utils.h>
+
+static const struct rate_ctr_desc mtp_lset_cfg_description[] = {
+ [MTP_LSET_TOTA_IN_MSG] = { "total.in", "Total messages in "},
+ [MTP_LSET_SCCP_IN_MSG] = { "sccp.in", "SCCP messages in "},
+ [MTP_LSET_IUSP_IN_MSG] = { "isup.in", "ISUP messages in "},
+ [MTP_LSET_TOTA_OUT_MSG] = { "total.out", "Total messages out "},
+ [MTP_LSET_SCCP_IN_MSG] = { "sccp.out", "SCCP messages out "},
+ [MTP_LSET_IUSP_IN_MSG] = { "isup.out", "ISUP messages out "},
+};
+
+static const struct rate_ctr_desc mtp_link_cfg_description[] = {
+ [MTP_LNK_IN] = { "total.in", "Messages in "},
+ [MTP_LNK_OUT] = { "total.out", "Messages out "},
+ [MTP_LNK_ERROR] = { "total.error", "Errors occured "},
+ [MTP_LNK_SLTM_TOUT] = { "sltm.timeouts", "SLTM timeouts "},
+};
+
+static const struct rate_ctr_group_desc mtp_lset_ctrg_desc = {
+ .group_name_prefix = "mtp_lset",
+ .group_description = "MTP LinkSet",
+ .num_ctr = ARRAY_SIZE(mtp_lset_cfg_description),
+ .ctr_desc = mtp_lset_cfg_description,
+};
+
+static const struct rate_ctr_group_desc mtp_link_ctrg_desc = {
+ .group_name_prefix = "mtp_link",
+ .group_description = "MTP Link",
+ .num_ctr = ARRAY_SIZE(mtp_link_cfg_description),
+ .ctr_desc = mtp_link_cfg_description,
+};
+
+const struct rate_ctr_group_desc *mtp_link_set_rate_ctr_desc()
+{
+ return &mtp_lset_ctrg_desc;
+}
+
+const struct rate_ctr_group_desc *mtp_link_rate_ctr_desc()
+{
+ return &mtp_link_ctrg_desc;
+}