I want to use the /proc to find the resource usage of a particular process every second. The resources include cputime, disk usage and network usage. I looked at /proc/pid/stat , but I am not sure whether I am getting the required details. I want all 3 resource usage and I want to monitor them every second.
|
Some newer kernels have /prod/pid/io file. This is where IO stats are. It is not documented in man proc, but you can try to figure out the numbers yourself. Hope it helps. Alex. |
|||
|
|
Don't think there is a way to get the disk and network information on a per process basis. The best you can have is the global disk and network, and the per process CPU time. All documented in |
|||||
|
|
I don't know about network. |
|||
|
|
|
|||
|
|
|
The best way to approach problems like this is to look up the source code of tools that perform similar monitoring and reporting. Although there is no guarantee that they are using /proc directly, they will lead you to an efficient way to tackle the problem. For your case, top(1), iotop(8) and nethogs(8) come to mind. |
|||
|
|

/proc/pid/statusgives you a human-readable form. See this for proc documentation: homepages.cwi.nl/~aeb/linux/man2html/man5/proc.5.html – lunixbochs Jul 8 '11 at 4:31