Reputation:
I need to get CPU utilization metrics for all the threads in a process.
constraints = not allowed to write additional code in thread
I know you can use the "top" command, but what other ways are there? Is there a flag for "ps"?
Thank you in advance for all your help.
Upvotes: 8
Views: 16059
Reputation: 995
you can use "top" command to find the process Id first.
After that, you can use the following command to only display CPU/Memory usage for the process
top -p {pid}
After that, you can press "Shift"+"h" to show the threads
Upvotes: 0
Reputation: 11245
Possibly a simpler way of doing this is to use getrusage with the linux specific extension of RUSAGE_THREAD
. Once you have these times, you can just subtract the times the last time you sampled, and divide by the real time that passed since your last sample. That say you get the CPU usage as a percentage.
For linux specific documentation, see the rusage liunx man page.
Upvotes: 1
Reputation: 173
You can read the content of /proc/[your PID]/stat
to get information for the whole process and if you have a 2.6 kernel there is also /proc/[your PID]/task/[thread ID]/stat
with the information for the individual threads. (see here)
Specifically, you will find these two fields:
The number of jiffies that this process has been scheduled in user mode.
stime %lu
The number of jiffies that this process has been scheduled in kernel mode.
cutime %ld
The problematic part here is the unit in which the values are given. A jiffy is 1/HZ seconds, where HZ is the kernel clock tick rate and determining this clock rate is the hard part.
If you need this only for one specific system, you can just do some tests or look at your kernel headers and hardcode this value into your program. If you want to know how to determine it in a more general way, you can look at how a tool like top is doing it by looking at its source code (see the old_Hertz_hack()
function and the related comments)
Upvotes: 8
Reputation: 15198
You may be able to do this with gnu gprof which is available in Linux. I believe that they claim to support threading, but this is more complicated than profiling at the process level, so you may not get the results you're looking for.
Here's a howto for your situation.
Upvotes: 0