summaryrefslogtreecommitdiffstats
path: root/src/rpc-server/commands/trex_rpc_cmd_general.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rpc-server/commands/trex_rpc_cmd_general.cpp')
-rw-r--r--src/rpc-server/commands/trex_rpc_cmd_general.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/rpc-server/commands/trex_rpc_cmd_general.cpp b/src/rpc-server/commands/trex_rpc_cmd_general.cpp
index 541ff099..37eafef8 100644
--- a/src/rpc-server/commands/trex_rpc_cmd_general.cpp
+++ b/src/rpc-server/commands/trex_rpc_cmd_general.cpp
@@ -156,22 +156,23 @@ TrexRpcCmdGetActivePGIds::_run(const Json::Value &params, Json::Value &result) {
return (TREX_RPC_CMD_OK);
}
-/*
- Get cpu utilization per thread with up to 20 latest values, Latest value will be first in array.
- */
+
+// get utilization of CPU per thread with up to 20 latest values + mbufs per socket
trex_rpc_cmd_rc_e
-TrexRpcCmdGetCpuUtilFull::_run(const Json::Value &params, Json::Value &result) {
+TrexRpcCmdGetUtilization::_run(const Json::Value &params, Json::Value &result) {
cpu_util_full_t cpu_util_full;
Json::Value &section = result["result"];
- section = Json::arrayValue;
+
+ if (get_stateless_obj()->get_platform_api()->get_mbuf_util(section) != 0)
+ return TREX_RPC_CMD_INTERNAL_ERR;
if (get_stateless_obj()->get_platform_api()->get_cpu_util_full(cpu_util_full) != 0)
return TREX_RPC_CMD_INTERNAL_ERR;
for (int thread_id = 0; thread_id < cpu_util_full.size(); thread_id++) {
for (int history_id = 0; history_id < cpu_util_full[thread_id].size(); history_id++) {
- section[thread_id].append(cpu_util_full.at(thread_id).at(history_id));
+ section["cpu"][thread_id].append(cpu_util_full.at(thread_id).at(history_id));
}
}
return (TREX_RPC_CMD_OK);