1825795 Members
2310 Online
109687 Solutions
New Discussion

CPU Load

 
Amitkumar_1
Occasional Advisor

CPU Load

Hello Guru's,
How can i check the CPU load except top,w commands.
9 REPLIES 9
Rajeev  Shukla
Honored Contributor

Re: CPU Load

Use uptime or sar
#uptime

#sar 5 10
Adisuria Wangsadinata_1
Honored Contributor

Re: CPU Load

Hi,

Using glance software (not a free one), sar command (sar -u).

Check the document (docID : KBRC00014838) about 'Determining the cause of system performance problems' at this url below:

http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000073548851

Hope this information can help you.

Cheers,
AW

now working, next not working ... that's unix
Arunvijai_4
Honored Contributor

Re: CPU Load

You can use performance tools like Glance given in this page,

http://h21007.www2.hp.com/dspp/dld/dld_DownloadsListingPage_IDX/1,2381,11169,00.html
[HP-DSPP performance tools list]

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
RAC_1
Honored Contributor

Re: CPU Load

There are many ways to do it.
glance
pv
UNIX95= ps -ef -o pcpu,args,pid,ruser
There is no substitute to HARDWORK
Yogeeraj_1
Honored Contributor

Re: CPU Load

hi,

We use measureware tool "extract" to extract CPU performance figures for the day and plot the graph using MS Excel.

e.g.
/opt/perf/bin/extract -xp -r /home/yogeeraj/zgbltemplate -g -b today 00:0
0 -e today 23:55


hope this helps too

kind regards
yogeeraj
No person was ever honoured for what he received. Honour has been the reward for what he gave (clavin coolidge)
Arturo Galbiati
Esteemed Contributor

Re: CPU Load

Hi Yogeeraj,
I'm interested in this.
Please, could you post your template file?
TIA,
Art

N.B> no point for this please
Muthukumar_5
Honored Contributor

Re: CPU Load

You can use,

a) vmstat
b) sam -> performance monitor -> system activity
c) UNIX95= ps -ef -o cpu,pcpu,pid,comm (per process)

hth.
Easy to suggest when don't know about the problem!
Steve Andrews_6
Frequent Advisor

Re: CPU Load

I use the command;
# sar -u -M 2 2
On HP this gives a look at individual CPU's and the overall CPU status, great for scripting. Try it, you will like it!
In God We Trust
Amitkumar_1
Occasional Advisor

Re: CPU Load

thanks Guru's