Skip to content

Commit 1e62f08

Browse files
committed
e2sm_kpm: update function naming
1 parent 2965aee commit 1e62f08

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

lib/e2/e2sm/e2sm_kpm/e2sm_kpm_du_meas_provider_impl.cpp

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,10 @@ e2sm_kpm_du_meas_provider_impl::e2sm_kpm_du_meas_provider_impl(srs_du::f1ap_ue_i
4545
e2sm_kpm_supported_metric_t{
4646
NO_LABEL, E2_NODE_LEVEL | UE_LEVEL, true, &e2sm_kpm_du_meas_provider_impl::get_prb_use_perc_ul});
4747

48-
supported_metrics.emplace("DRB.RlcSduDelayDl",
49-
e2sm_kpm_supported_metric_t{
50-
NO_LABEL, ALL_LEVELS, true, &e2sm_kpm_du_meas_provider_impl::get_drb_rlc_sdu_latency});
48+
supported_metrics.emplace(
49+
"DRB.RlcSduDelayDl",
50+
e2sm_kpm_supported_metric_t{
51+
NO_LABEL, ALL_LEVELS, true, &e2sm_kpm_du_meas_provider_impl::get_drb_dl_rlc_sdu_latency});
5152

5253
supported_metrics.emplace(
5354
"DRB.PacketSuccessRateUlgNBUu",
@@ -783,10 +784,10 @@ bool e2sm_kpm_du_meas_provider_impl::get_drb_rlc_sdu_transmitted_volume_ul(
783784
return meas_collected;
784785
}
785786

786-
bool e2sm_kpm_du_meas_provider_impl::get_drb_rlc_sdu_latency(const asn1::e2sm::label_info_list_l label_info_list,
787-
const std::vector<asn1::e2sm::ue_id_c>& ues,
788-
const std::optional<asn1::e2sm::cgi_c> cell_global_id,
789-
std::vector<asn1::e2sm::meas_record_item_c>& items)
787+
bool e2sm_kpm_du_meas_provider_impl::get_drb_dl_rlc_sdu_latency(const asn1::e2sm::label_info_list_l label_info_list,
788+
const std::vector<asn1::e2sm::ue_id_c>& ues,
789+
const std::optional<asn1::e2sm::cgi_c> cell_global_id,
790+
std::vector<asn1::e2sm::meas_record_item_c>& items)
790791
{
791792
bool meas_collected = false;
792793
if ((label_info_list.size() > 1 or

lib/e2/e2sm/e2sm_kpm/e2sm_kpm_du_meas_provider_impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class e2sm_kpm_du_meas_provider_impl : public e2sm_kpm_meas_provider, public e2_
9797
metric_meas_getter_func_t get_drb_rlc_sdu_transmitted_volume_ul;
9898
metric_meas_getter_func_t get_drb_dl_mean_throughput;
9999
metric_meas_getter_func_t get_drb_ul_mean_throughput;
100-
metric_meas_getter_func_t get_drb_rlc_sdu_latency;
100+
metric_meas_getter_func_t get_drb_dl_rlc_sdu_latency;
101101

102102
srslog::basic_logger& logger;
103103
srs_du::f1ap_ue_id_translator& f1ap_ue_id_provider;

0 commit comments

Comments
 (0)