vote up 2 vote down star
2

Hi

I want to programatically [in C] calculate CPU usage % for a given process ID in Linux.

How can we get the realtime CPU usage % for a given process ??

To make it further clear -

  • I should be able to determine the CPU usage for the provided processid or process.
  • The process need not be the child process.
  • I want the solution in 'C' language.
flag

75% accept rate

5 Answers

vote up 2 vote down

getrusage() can help you in determining the usage of current process or its child

Update: I can't remember an API. But all details will be in /proc/PID/stat, so if we could parse it, we can get the percentage.

EDIT: Since CPU % is not straight forward to calculate, You could use sampling kind of stuff here. Read ctime and utime for a PID at a point in time and read the same values again after 1 sec. Find the difference and divide by hundred. You will get utilization for that process for past one second.

(might get more complex if there are many processors)

link|flag
How does getrusage() system call help me in calculating CPU usage of a process ?? – codingfreak Sep 14 at 9:06
@codingfreak. i misunderstood the question. Now after u updated it, clear. – Aviator Sep 14 at 9:22
@Aviator CPU % = (processusertime + processkerneltime)/(CPUusertime+CPUkerneltime) How can I get the values for "processusertime" and so on. ??? I see different values down in "/proc/PID/stat" file. So which one corresponds to which value ?? – codingfreak Sep 14 at 9:32
@codingfreak:CPU time is difficult to calculate. U need to loop through all PID stats i guess (though not sure) – Aviator Sep 14 at 10:08
@Aviator there would be some way or other to do it ... since even applications like top should calculate the CPU usage to show in their output – codingfreak Sep 14 at 10:14
show 1 more comment
vote up 1 vote down

You can read the manpage for proc for more detail, but in summary you can read /proc/[number]/stat to get the information about a process. This is also used by the 'ps' command.

All the fields and their scanf format specifiers are documented in the proc manpage.

Here are some of the information from the manpage copied (it is quite long):

          pid %d The process ID.

          comm %s
                 The  filename of the executable, in parentheses.  This is
                 visible whether or not the executable is swapped out.

          state %c
                 One character from the string "RSDZTW" where  R  is  runâ
                 ning,  S is sleeping in an interruptible wait, D is waitâ
                 ing in uninterruptible disk sleep,  Z  is  zombie,  T  is
                 traced or stopped (on a signal), and W is paging.

          ppid %d
                 The PID of the parent.

          pgrp %d
                 The process group ID of the process.

          session %d
                 The session ID of the process.

          tty_nr %d
                 The tty the process uses.

          tpgid %d
                 The  process group ID of the process which currently owns
                 the tty that the process is connected to.
link|flag
@Andre Miller - Where does it show CPU usage % ??? – codingfreak Sep 14 at 9:40
“CPU usage” and “current state” are like location and velocity. If you know one you can’t know the other. CPU usage depends on a duration so you have to check yourself how often your process is in the “R” state. – Bombe Sep 14 at 9:45
Hmm, good question, I always just assumed it would be there! Presumably you should be able to calculate it from these variables – Andre Miller Sep 14 at 9:51
If you check the output of top command you can see CPU usage .... but I am not intrested in greping through top output to calculate CPU usage ..... – codingfreak Sep 14 at 9:54
@codingfreak: ps aux is better :) – Aviator Sep 14 at 9:55
show 3 more comments
vote up 0 vote down

Take a look at the "pidstat" command, sounds like exactly what you require.

link|flag
@James - I am not able to access pidstat command in my FEDORA 9 machine. – codingfreak Sep 14 at 10:15
@codingfreak - you need to install Sysstat tool for it – themangoman Oct 9 at 0:46
vote up 0 vote down

You need to parse out the data from /proc/<PID>/stat. These are the first few fields (from Documentation/filesystems/proc.txt in your kernel source):

Table 1-3: Contents of the stat files (as of 2.6.22-rc3)
..............................................................................
 Field          Content
  pid           process id
  tcomm         filename of the executable
  state         state (R is running, S is sleeping, D is sleeping in an
                uninterruptible wait, Z is zombie, T is traced or stopped)
  ppid          process id of the parent process
  pgrp          pgrp of the process
  sid           session id
  tty_nr        tty the process uses
  tty_pgrp      pgrp of the tty
  flags         task flags
  min_flt       number of minor faults
  cmin_flt      number of minor faults with child's
  maj_flt       number of major faults
  cmaj_flt      number of major faults with child's
  utime         user mode jiffies
  stime         kernel mode jiffies
  cutime        user mode jiffies with child's
  cstime        kernel mode jiffies with child's

You're probably after utime and/or stime. You'll also need to read the cpu line from /proc/stat, which looks like:

cpu  192369 7119 480152 122044337 14142 9937 26747 0 0

This tells you the cumulative CPU time that's been used in various categories, in units of jiffies. You need to take the sum of the values on this line to get a time_total measure.

Read both utime and stime for the process you're interested in, and read time_total from /proc/stat. Then sleep for a second or so, and read them all again. You can now calculate the CPU usage of the process over the sampling time, with:

user_util = 100 * (utime_after - utime_before) / (time_total_after - time_total_before);
sys_util = 100 * (stime_after - stime_before) / (time_total_after - time_total_before);

Make sense?

link|flag
@caf - I am really a newbie to this jiffy stuff ... sorry not able to understand what your saying .... – codingfreak Sep 15 at 4:51
A "jiffy" is a unit of CPU time. Exactly what it corresponds to in wall-clock time depends on the architecture and how your kernel is configured, but the important thing is that /proc/stat tells you how many jiffies the CPU has executed in total, and /proc/<PID>/stat tells you how many jiffies have been executed by a single process. – caf Sep 15 at 6:21
@caf - I am trying to learn the jiffy stuff .. meanwhile can you write down small code where u calculate the CPU usage of a process ?? – codingfreak Sep 15 at 8:40
vote up -1 vote down

what about catching (grep-ing) output of top.

link|flag
Thats really not a best way to do efficient;y – codingfreak Sep 14 at 9:02
1  
Will probably require an "expensive" system call to start 'top'. – Liran Orevi Sep 14 at 9:28
@Liran: Rightly said :) – Aviator Sep 14 at 9:29
Forget about this way of doing things .... in C – codingfreak Sep 14 at 9:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.