I'm trying to calculate the percentage of CPU% used for a particular process using Python/Shell, but so far nothing.
I have looked at a lot of questions here, but none could help me. Any suggestions?
|
feedback
|
|
from shell, ps with the cp output format specifier:
From python - see psutil.Process.get_cpu_percent() | ||||
feedback
|
If the process you're looking for might not be running as the same user etc, you can use If you know a specific process ID, you could just do this:
where | |||||
feedback
|
|
well, you can try to use the top command with "-b -n 1" and grab it's contents and than you can use cut or other tools to get what you need NOTE: you can add the -p option to limit to a particular process id | |||
|
feedback
|
topgood enough for your purposes? – Eamorr Sep 19 '11 at 11:19