Operating System - HP-UX
1753506 Members
5130 Online
108794 Solutions
New Discussion

Re: How to find process C.P.U Utilization ?

 
redhat7012
Advisor

How to find process C.P.U Utilization ?

hi ,

 

please i need help ..

 

i have to track the processes which r consuming more cpu utilization..

 

neeed command sfor this in HP-UX Box.

 

Regards,

appu.

2 REPLIES 2
Bill Hassell
Honored Contributor

Re: How to find process C.P.U Utilization ?

The command is called:    top

 

It will sort all the processes in order of CPU usage.



Bill Hassell, sysadmin
VKV
Advisor

Re: How to find process C.P.U Utilization ?

As Bill said, top is the command

 

 

The following command also will list process sorted on the basis of CPU usage

 

UNIX95= ps -ef  -o pcpu,ruser,comm | sort -rn | head

 

 

You can use “glance” command if you have it installed on your system.

This can give you a lot more information and options to analyze performance issues

 

It is also good to OVPA (openview performance agents) configured.  This will capture your server resource utilization data and is very useful as you will able to see the utilization at any given time in the past.