|
|
|
/**
|
|
|
|
*
|
|
|
|
* \section COPYRIGHT
|
|
|
|
*
|
|
|
|
* Copyright 2013-2020 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 SRSLTE_SYS_METRICS_PROCESSOR_H
|
|
|
|
#define SRSLTE_SYS_METRICS_PROCESSOR_H
|
|
|
|
|
|
|
|
#include "srslte/system/sys_metrics.h"
|
|
|
|
#include <chrono>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace srslte {
|
|
|
|
|
|
|
|
/// Process information from the system to create sys_metrics_t. The information is processed from the /proc/ system.
|
|
|
|
class sys_metrics_processor
|
|
|
|
{
|
|
|
|
/// Helper class used to parse the information from the /proc/[pid]/stats.
|
|
|
|
struct proc_stats_info {
|
|
|
|
proc_stats_info();
|
|
|
|
|
|
|
|
// Initialize the variables that will be used.
|
|
|
|
int32_t num_threads = 0;
|
|
|
|
uint32_t utime = 0;
|
|
|
|
uint32_t stime = 0;
|
|
|
|
|
|
|
|
// Rest of the information of the stats file.
|
|
|
|
int32_t pid, ppid, pgrp, session, tty_nr, tpgid, exit_signal, processor, exit_code, cutime, cstime, priority, nice,
|
|
|
|
itrealvalue, rss, cguest_time;
|
|
|
|
uint32_t minflt, cminflt, majflt, cmajflt, vsize, rsslim, startcode, endcode, startstack, kstkesp, kstkeip, signal,
|
|
|
|
blocked, sigignore, sigcatch, wchan, nswap, cnswap, guest_time, start_data, end_data, start_brk, arg_start,
|
|
|
|
arg_end, env_start, env_end, flags, rt_priority, policy;
|
|
|
|
uint64_t starttime, delaycct_blkio_ticks;
|
|
|
|
uint8_t state;
|
|
|
|
std::string comm;
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
/// Measures and returns the system metrics.
|
|
|
|
sys_metrics_t get_metrics();
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// Calculates and returns the cpu usage in %. current_query is the most recent proc_stats_info, and
|
|
|
|
/// delta_time_in_seconds is the elapsed time between the last measure and current in seconds. NOTE: Returns -1.0f on
|
|
|
|
/// error.
|
|
|
|
float calculate_cpu_usage(const proc_stats_info& current_query, float delta_time_in_seconds) const;
|
|
|
|
|
|
|
|
/// Calculate the memory parameters and writes them in metrics.
|
|
|
|
/// NOTE: on error, metrics memory parameters are set to 0.
|
|
|
|
void calculate_mem_usage(sys_metrics_t& metrics) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
proc_stats_info last_query = {};
|
|
|
|
std::chrono::time_point<std::chrono::steady_clock> last_query_time = std::chrono::steady_clock::now();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace srslte
|
|
|
|
|
|
|
|
#endif // SRSLTE_SYS_METRICS_PROCESSOR_H
|