srsLTE/lib/include/srsran/upper/rlc_metrics.h

49 lines
1.2 KiB
C
Raw Normal View History

/**
2017-05-18 03:52:29 -07:00
*
* \section COPYRIGHT
2017-05-18 03:52:29 -07:00
*
2021-03-19 03:45:56 -07:00
* Copyright 2013-2021 Software Radio Systems Limited
2017-05-18 03:52:29 -07:00
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the distribution.
2017-05-18 03:52:29 -07:00
*
*/
2021-03-19 03:45:56 -07:00
#ifndef SRSRAN_RLC_METRICS_H
#define SRSRAN_RLC_METRICS_H
2017-05-18 03:52:29 -07:00
2021-03-19 03:45:56 -07:00
#include "srsran/common/common.h"
#include <iostream>
2017-05-18 03:52:29 -07:00
2021-03-19 03:45:56 -07:00
namespace srsran {
2017-05-18 03:52:29 -07:00
2019-10-23 02:53:00 -07:00
typedef struct {
// SDU metrics
2019-10-23 02:53:00 -07:00
uint32_t num_tx_sdus;
uint32_t num_rx_sdus;
uint64_t num_tx_sdu_bytes;
uint64_t num_rx_sdu_bytes;
uint32_t num_lost_sdus; //< Count dropped SDUs at Tx due to bearer inactivity or empty buffer
uint64_t rx_latency_ms; //< Average time in ms from first RLC segment to full SDU
// PDU metrics
2019-10-23 02:53:00 -07:00
uint32_t num_tx_pdus;
uint32_t num_rx_pdus;
uint64_t num_tx_pdu_bytes;
uint64_t num_rx_pdu_bytes;
2020-12-14 06:04:30 -08:00
uint32_t num_lost_pdus; //< Lost PDUs registered at Rx
// misc metrics
uint32_t rx_buffered_bytes; //< sum of payload of PDUs buffered in rx_window
2019-10-23 02:53:00 -07:00
} rlc_bearer_metrics_t;
typedef struct {
2021-03-19 03:45:56 -07:00
rlc_bearer_metrics_t bearer[SRSRAN_N_RADIO_BEARERS];
rlc_bearer_metrics_t mrb_bearer[SRSRAN_N_MCH_LCIDS];
2019-10-23 02:53:00 -07:00
} rlc_metrics_t;
2017-05-18 03:52:29 -07:00
2021-03-19 03:45:56 -07:00
} // namespace srsran
2017-05-18 03:52:29 -07:00
2021-03-19 03:45:56 -07:00
#endif // SRSRAN_RLC_METRICS_H