Hi, I'm trying to figure out how to get the CPU usage for a particular process but can only find information relating to overall CPU usage.
Does anyone know how to extract the current CPU usage in percentage terms for a specific application?
|
2
|
|||
|
|
|
Performance Counters - Process - % Processor Time. Little sample code to give you the idea:
EDIT -- Notes for finding the instance based on Process ID: I do not know of any better way, and hopefully somebody does. If not, here is one way you can find the right instance name for your process given the Process ID and process name. There is another Performance Counter (PC) called The naming is simple for each instance: "myapp" "myapp#1" "myapp#2" ... etc.
Once the PC's value equals the PID, you found the right |
||||||
|