我想在Linux中知道一段时间内进程和所有子进程的CPU利用率。
更具体地说,这是我的用例:
有一个进程等待用户执行程序的请求。为了执行这些程序,这个过程调用子进程(一次最多限制为5个)&每个子进程执行其中一个提交的程序(假设用户一次提交了15个程序)。因此,如果用户提交了15个程序,那么将运行3批5个子进程。子进程在完成程序执行后立即被终止。
我想知道在执行这15个程序期间父进程及其所有子进程的%CPU利用率。
使用top或其他命令有没有简单的方法? (或者我应该附加到父进程的任何工具。)
答案 0 :(得分:8)
您可以在/proc/PID/stat
中找到此信息,其中PID是您父进程的进程ID。假设父进程等待其子进程,则可以从 utime , stime , cutime 和 cstime <计算总CPU使用率。 / EM>:
utime%lu
在用户模式下安排此流程的时间, 以时钟周期测量(除以sysconf(_SC_CLK_TCK)。这包括 访客时间,guest_time(运行虚拟CPU所花费的时间,见下文), 以便不知道访客时间字段的应用程序不会 从计算中失去那段时间。
stime%lu
在内核模式下安排此进程的时间, 以时钟周期测量(除以sysconf(_SC_CLK_TCK)。
cutime%ld
这个过程等待孩子的时间 在用户模式下安排,以时钟周期测量(除以 的sysconf(_SC_CLK_TCK)。 (另见时间(2)。)这包括客人时间, cguest_time(运行虚拟CPU所花费的时间,见下文)。
cstime%ld
这个过程等待孩子的时间 以内核模式调度,以时钟周期测量(除以 的sysconf(_SC_CLK_TCK)。
有关详细信息,请参阅proc(5) manpage。
答案 1 :(得分:2)
可能不是确切的命令。但你可以做类似下面的事情来获得各种进程的CPU使用并添加它。
#ps -C sendmail,firefox -o pcpu= | awk '{s+=$1} END {print s}'
/ proc / [pid] / stat有关该过程的状态信息。这被ps使用并制成人类可读的形式。
另一种方法是使用cgroups并使用cpuacct。
答案 2 :(得分:2)
当然,你可以使用好的旧C
以硬核方式进行find_cpu.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define MAX_CHILDREN 100
/**
* System command execution output
* @param <char> command - system command to execute
* @returb <char> execution output
*/
char *system_output (const char *command)
{
FILE *pipe;
static char out[1000];
pipe = popen (command, "r");
fgets (out, sizeof(out), pipe);
pclose (pipe);
return out;
}
/**
* Finding all process's children
* @param <Int> - process ID
* @param <Int> - array of childs
*/
void find_children (int pid, int children[])
{
char empty_command[] = "/bin/ps h -o pid --ppid ";
char pid_string[5];
snprintf(pid_string, 5, "%d", pid);
char *command = (char*) malloc(strlen(empty_command) + strlen(pid_string) + 1);
sprintf(command, "%s%s", empty_command, pid_string);
FILE *fp = popen(command, "r");
int child_pid, i = 1;
while (fscanf(fp, "%i", &child_pid) != EOF)
{
children[i] = child_pid;
i++;
}
}
/**
* Parsign `ps` command output
* @param <char> out - ps command output
* @return <int> cpu utilization
*/
float parse_cpu_utilization (const char *out)
{
float cpu;
sscanf (out, "%f", &cpu);
return cpu;
}
int main(void)
{
unsigned pid = 1;
// getting array with process children
int process_children[MAX_CHILDREN] = { 0 };
process_children[0] = pid; // parent PID as first element
find_children(pid, process_children);
// calculating summary processor utilization
unsigned i;
float common_cpu_usage = 0.0;
for (i = 0; i < sizeof(process_children)/sizeof(int); ++i)
{
if (process_children[i] > 0)
{
char *command = (char*)malloc(1000);
sprintf (command, "/bin/ps -p %i -o 'pcpu' --no-headers", process_children[i]);
common_cpu_usage += parse_cpu_utilization(system_output(command));
}
}
printf("%f\n", common_cpu_usage);
return 0;
}
编译:
gcc -Wall -pedantic --std=gnu99 find_cpu.c
享受!
答案 3 :(得分:1)
这是计算所有流程总CPU的单行程序。您可以通过将列过滤器传递到顶部输出来调整它:
top -b -d 5 -n 2 | awk '$1 == "PID" {block_num++; next} block_num == 2 {sum += $9;} END {print sum}'
您好Sergei Rodionov,有没有办法使用您的语法以小时,分钟,秒为单位获取进程总时间?