- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- load average in HP Ux
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-10-2007 09:40 PM
тАО05-10-2007 09:40 PM
load average in HP Ux
In the uptime command the load average is showing as 68 67 68.
What is the command to watch the load average for certain period of time ?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-10-2007 10:22 PM
тАО05-10-2007 10:22 PM
Re: load average in HP Ux
check out the sar command "man sar"
for example to check cpu
sar -u 5 5
Please read:
http://66.34.90.71/ITRCForumsEtiquette/after.html
Please also read:
http://forums1.itrc.hp.com/service/forums/helptips.do?#33
on how to reward any useful answers given to your questions.
So far you have not awarded any points !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-10-2007 10:26 PM
тАО05-10-2007 10:26 PM
Re: load average in HP Ux
The numbers indicate a lot of processs waiting.
This may not be a problem. It could be a lot of sleeping processes caused by bad application design.
If the system is performing normally, no action need be taken.
To find performance problems there are a few ways:
http://www.hpux.ws/system.perf.sh
User complaints.
Both work well.
Please read Peter's links and follow his advice.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-10-2007 11:06 PM
тАО05-10-2007 11:06 PM
Re: load average in HP Ux
You can also use measureware to get historical performance from collected data.
For more information, see man mwa
mwa - Performance tool script for starting and stopping data collection and alarms
hope this helps too!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-10-2007 11:50 PM
тАО05-10-2007 11:50 PM
Re: load average in HP Ux
'sar' does not capture load average (CPU run queue) data, so you will have to look elsewhere. If you are willing to pay the licensing fee, MeasureWare is an excellent product. Alternatively, you could just set up the following cron job, which captures the 5-min. average:
0,5,10,15,20,25,30,35,40,45,50,55 * * * * uptime | awk '{gsub(/,/,"");print $1,$11}' 1> /var/opt/hist/load_avg.$(date +%Y%m%d).out
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-11-2007 12:00 AM
тАО05-11-2007 12:00 AM
Re: load average in HP Ux
There is a lot more to know about this situation: size of RAM, number of CPUs, type of application being run, number of network users, etc. And of course, does the system seem to respond quickly? It is certainly possible that your programs perform extremely short tasks. In this case, the system overhead will be quite high (more than 30%).
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-11-2007 02:06 AM
тАО05-11-2007 02:06 AM
Re: load average in HP Ux
You can use 1)top ,or
2)glance
to show the load averages.
Basically these are the tools used in hp-ux for performance monitoring.
Native command is sar.
you can do man top , man glance , man sar
to get detailed information about these.
ok.
Regards,
Lokesh....