mirror of https://github.com/pvnis/srsRAN_4G.git
add tx/rx pkt ok/nok to enb metrics, also add enb metrics test
This is what it'll look like if running the new test: ------DL--------------------------------UL------------------------------------- rnti cqi ri mcs brate ok nok (%) snr phr mcs brate ok nok (%) bsr 46 16 1.5 28 15.2G 1000 1000 100% 14.2 12.0 20 15.2M 50 10 20% 100.0 ffff 1.2 1.5 6.2 1.00M 100 54 54% 22.2 99.1 28 1.00k 50 10 20% 100.0master
parent
074ffbbb1d
commit
2f8643fb97
@ -0,0 +1,162 @@
|
||||
/*
|
||||
* Copyright 2013-2019 Software Radio Systems Limited
|
||||
*
|
||||
* This file is part of srsLTE.
|
||||
*
|
||||
* srsLTE is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* srsLTE is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* A copy of the GNU Affero General Public License can be found in
|
||||
* the LICENSE file in the top-level directory of this distribution
|
||||
* and at http://www.gnu.org/licenses/.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "srsenb/hdr/metrics_csv.h"
|
||||
#include "srsenb/hdr/metrics_stdout.h"
|
||||
#include "srslte/common/metrics_hub.h"
|
||||
#include "srslte/interfaces/enb_metrics_interface.h"
|
||||
#include "srslte/srslte.h"
|
||||
#include <iostream>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <strings.h>
|
||||
#include <unistd.h>
|
||||
|
||||
using namespace srsenb;
|
||||
|
||||
namespace srsenb {
|
||||
|
||||
char* csv_file_name = NULL;
|
||||
|
||||
#define NUM_METRICS 2
|
||||
|
||||
// fake classes
|
||||
class enb_dummy : public enb_metrics_interface
|
||||
{
|
||||
public:
|
||||
enb_dummy()
|
||||
{
|
||||
// first entry
|
||||
metrics[0].rf.rf_o = 10;
|
||||
metrics[0].stack.rrc.n_ues = 1;
|
||||
metrics[0].stack.mac[0].rnti = 0x46;
|
||||
metrics[0].stack.mac[0].tx_pkts = 1000;
|
||||
metrics[0].stack.mac[0].tx_errors = 1000;
|
||||
metrics[0].stack.mac[0].tx_brate = 1e6;
|
||||
metrics[0].stack.mac[0].rx_pkts = 50;
|
||||
metrics[0].stack.mac[0].rx_errors = 10;
|
||||
metrics[0].stack.mac[0].rx_brate = 1e3;
|
||||
metrics[0].stack.mac[0].ul_buffer = 100;
|
||||
metrics[0].stack.mac[0].dl_buffer = 200;
|
||||
metrics[0].stack.mac[0].dl_cqi = 15.9;
|
||||
metrics[0].stack.mac[0].dl_ri = 1.5;
|
||||
metrics[0].stack.mac[0].dl_pmi = 1.0;
|
||||
metrics[0].stack.mac[0].phr = 12.0;
|
||||
metrics[0].phy->dl.mcs = 28.0;
|
||||
metrics[0].phy->ul.mcs = 20.2;
|
||||
metrics[0].phy->ul.sinr = 14.2;
|
||||
|
||||
// second
|
||||
metrics[1].rf.rf_o = 10;
|
||||
metrics[1].stack.rrc.n_ues = 1;
|
||||
metrics[1].stack.mac[0].rnti = 0xffff;
|
||||
metrics[1].stack.mac[0].tx_pkts = 100;
|
||||
metrics[1].stack.mac[0].tx_errors = 54;
|
||||
metrics[1].stack.mac[0].tx_brate = 1e6;
|
||||
metrics[1].stack.mac[0].rx_pkts = 50;
|
||||
metrics[1].stack.mac[0].rx_errors = 10;
|
||||
metrics[1].stack.mac[0].rx_brate = 1e3;
|
||||
metrics[1].stack.mac[0].ul_buffer = 100;
|
||||
metrics[1].stack.mac[0].dl_buffer = 200;
|
||||
metrics[1].stack.mac[0].dl_cqi = 1.2;
|
||||
metrics[1].stack.mac[0].dl_ri = 1.5;
|
||||
metrics[1].stack.mac[0].dl_pmi = 1.0;
|
||||
metrics[1].stack.mac[0].phr = 99.1;
|
||||
metrics[1].phy->dl.mcs = 6.2;
|
||||
metrics[1].phy->ul.mcs = 28.0;
|
||||
metrics[1].phy->ul.sinr = 22.2;
|
||||
}
|
||||
|
||||
bool get_metrics(enb_metrics_t* m)
|
||||
{
|
||||
// fill dummy values
|
||||
memcpy(m, &metrics[counter % NUM_METRICS], sizeof(enb_metrics_t));
|
||||
counter++;
|
||||
return true;
|
||||
}
|
||||
|
||||
private:
|
||||
int counter = 0;
|
||||
enb_metrics_t metrics[2] = {};
|
||||
};
|
||||
|
||||
} // namespace srsenb
|
||||
|
||||
void usage(char* prog)
|
||||
{
|
||||
printf("Usage: %s -o csv_output_file\n", prog);
|
||||
}
|
||||
|
||||
void parse_args(int argc, char** argv)
|
||||
{
|
||||
int opt;
|
||||
|
||||
while ((opt = getopt(argc, argv, "o")) != -1) {
|
||||
switch (opt) {
|
||||
case 'o':
|
||||
csv_file_name = argv[optind];
|
||||
break;
|
||||
default:
|
||||
usage(argv[0]);
|
||||
exit(-1);
|
||||
}
|
||||
}
|
||||
if (!csv_file_name) {
|
||||
usage(argv[0]);
|
||||
exit(-1);
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
float period = 1.0;
|
||||
enb_dummy enb;
|
||||
|
||||
if (argc < 3) {
|
||||
usage(argv[0]);
|
||||
exit(-1);
|
||||
}
|
||||
|
||||
parse_args(argc, argv);
|
||||
|
||||
// the default metrics type for stdout output
|
||||
metrics_stdout metrics_screen;
|
||||
metrics_screen.set_handle(&enb);
|
||||
|
||||
// the CSV file writer
|
||||
metrics_csv metrics_file(csv_file_name);
|
||||
metrics_file.set_handle(&enb);
|
||||
|
||||
// create metrics hub and register metrics for stdout
|
||||
srslte::metrics_hub<enb_metrics_t> metricshub;
|
||||
metricshub.init(&enb, period);
|
||||
metricshub.add_listener(&metrics_screen);
|
||||
metricshub.add_listener(&metrics_file);
|
||||
|
||||
// enable printing
|
||||
metrics_screen.toggle_print(true);
|
||||
|
||||
std::cout << "Running for 2 seconds .." << std::endl;
|
||||
usleep(2e6);
|
||||
|
||||
metricshub.stop();
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue