/** * * \section COPYRIGHT * * Copyright 2013-2023 Software Radio Systems Limited * * 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. * * */ #ifndef SRSRAN_E2SM_KPM_METRICS_H #define SRSRAN_E2SM_KPM_METRICS_H #include "e2sm_kpm_common.h" #include "srsran/srsran.h" // clang-format off // Measurements defined in 3GPP TS 28.552 std::vector get_e2sm_kpm_28_552_metrics() { // TODO: add all metrics from 3GPP TS 28.552 std::vector metrics; // not supported metrics metrics.push_back({"RRU.PrbTotDl", false, REAL, "%", true, 0, true, 100, NO_LABEL | AVG_LABEL, CELL_LEVEL | UE_LEVEL }); metrics.push_back({"RRU.PrbTotUl", false, REAL, "%", true, 0, true, 100, NO_LABEL | AVG_LABEL, CELL_LEVEL | UE_LEVEL }); // not supported metrics metrics.push_back({"RRU.RachPreambleDedMean", false, REAL, "-", false, 0, false, 100, NO_LABEL, CELL_LEVEL | UE_LEVEL }); return metrics; } // Measurements defined in 3GPP TS 32.425 std::vector get_e2sm_kpm_34_425_metrics() { // TODO: add all metrics from 3GPP TS 32.425 std::vector metrics; return metrics; } // E2SM_KPM O-RAN specific Measurements std::vector e2sm_kpm_oran_metrics() { // TODO: add all E2SM_KPM O-RAN specific Measurements std::vector metrics; return metrics; } // Custom Measurements std::vector e2sm_kpm_custom_metrics() { std::vector metrics; // supported metrics metrics.push_back({"test", true, INTEGER, "", true, 0, true, 100, NO_LABEL, ENB_LEVEL | CELL_LEVEL | UE_LEVEL }); metrics.push_back({"random_int", true, INTEGER, "", true, 0, true, 100, NO_LABEL, CELL_LEVEL }); metrics.push_back({"cpu0_load", true, REAL, "", true, 0, true, 100, NO_LABEL, ENB_LEVEL }); metrics.push_back({"cpu_load", true, REAL, "", true, 0, true, 100, MIN_LABEL|MAX_LABEL|AVG_LABEL, ENB_LEVEL }); // not supported metrics metrics.push_back({"test123", false, REAL, "", true, 0, true, 100, NO_LABEL, CELL_LEVEL | UE_LEVEL }); return metrics; } // clang-format on #endif // SRSRAN_E2SM_KPM_METRICS_H