calculate cpu usage of a process as percentage in kernel space

1.7k Views Asked by At

Could anyone point out how I can calculate the cpu usage of a specific process in percentage terms? The code is a kernel module so I am looking for a better way than to parse data from /proc or to use a system call. I was wondering if I could calculate it using a combination of task_struct and linux kernel functions.

1

There are 1 best solutions below

2
On

task_struct have user time (utime), system time (stime), start_time and ..., here is the algorithm in https://stackoverflow.com/a/16736599/4490542