CPU utilization of process

Hi - Is is possible to return cpu utilization of a specific running application/process ?
I appreciate this data would be a point in time, but if not too expensive - could run in Query on demand to identify a potential issue we’re seeing.

Thanks.

Rather than point in time CPU utilization, one approach might be to report on the process’ user time & kernel time, and compare that against when it was created with something like:

((user time of it, kernel time of it),(now - creation time of it)) of process whose (name of it as lowercase = "<myprocess.exe>")

This can be used to calculate average CPU usage.

Note that these particular inspectors are Windows-only.

3 Likes