aboutsummaryrefslogtreecommitdiffstats
path: root/src/bts.cpp
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-07-07 09:33:29 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-07-07 09:33:29 +0200
commitc91c18e6ef9ee5fca3d10b57ebddf211d3655a8d (patch)
treefc3486b62928b9534320ca8502eb88a43c72a51c /src/bts.cpp
parente0c734dcfe6501198e56bd3a89ad03ce5cfd5129 (diff)
tbf: Add Poll Timeout counters
This commits adds three poll timeout counters - RLC Assign Timeout - RLC Ack Timeout - RLC Release Timeout to help diagnosing to cause for these events. There seems to be an increased rate of these when a PDCH is shared by multiple TBFs. Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/bts.cpp')
-rw-r--r--src/bts.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bts.cpp b/src/bts.cpp
index d14420c6..87a22def 100644
--- a/src/bts.cpp
+++ b/src/bts.cpp
@@ -59,6 +59,9 @@ static const struct rate_ctr_desc bts_ctr_description[] = {
{ "rlc.restarted", "RLC Restarted "},
{ "rlc.stalled", "RLC Stalled "},
{ "rlc.nacked", "RLC Nacked "},
+ { "rlc.ass.timedout", "RLC Assign Timeout "},
+ { "rlc.ack.timedout", "RLC Ack Timeout "},
+ { "rlc.rel.timedout", "RLC Release Timeout "},
{ "decode.errors", "Decode Errors "},
{ "sba.allocated", "SBA Allocated "},
{ "sba.freed", "SBA Freed "},