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

45 lines
1.0 KiB
C
Raw Normal View History

/**
2017-05-18 03:52:29 -07:00
*
* \section COPYRIGHT
2017-05-18 03:52:29 -07:00
*
* Copyright 2013-2020 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
*
*/
2018-03-31 10:04:04 -07:00
#ifndef SRSLTE_RLC_METRICS_H
#define SRSLTE_RLC_METRICS_H
2017-05-18 03:52:29 -07:00
#include "srslte/common/common.h"
#include <iostream>
2017-05-18 03:52:29 -07:00
namespace srslte {
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
// 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;
uint32_t num_lost_pdus; //< Lost PDUs registered at Rx
2019-10-23 02:53:00 -07:00
} rlc_bearer_metrics_t;
typedef struct {
rlc_bearer_metrics_t bearer[SRSLTE_N_RADIO_BEARERS];
rlc_bearer_metrics_t mrb_bearer[SRSLTE_N_MCH_LCIDS];
} rlc_metrics_t;
2017-05-18 03:52:29 -07:00
2018-03-31 10:04:04 -07:00
} // namespace srslte
2017-05-18 03:52:29 -07:00
2018-03-31 10:04:04 -07:00
#endif // SRSLTE_RLC_METRICS_H