cpu utilization of a process

Hi,
How can i find out the average cpu utilization of a particular long-running process in AIX? is there some command for this

Thanks

You can either use the "time" command or use "ps -Alo cpu,pid" if you know the process number (see the manpage for "ps -o" for other options you might need/want) and do the averaging yourself.

bakunin

thanks.. :slight_smile: