- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vmstat output - very urgent please
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
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
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
08-16-2010 09:46 PM
08-16-2010 09:46 PM
how to check run queue in vmstat out put
i run the command vmstat -n 15 2
15 second to two times
Thanks & Regds
rajesh
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2010 10:01 PM
08-16-2010 10:01 PM
Solutionhttp://docs.hp.com/en/B2355-60105/vmstat.1.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2010 10:05 PM
08-16-2010 10:05 PM
Re: vmstat output - very urgent please
how to take cpu utilization maximum and average per day
regds
Rajesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2010 10:08 PM
08-16-2010 10:08 PM
Re: vmstat output - very urgent please
how to take cpu utilization maximum and average per day. like BMC patrol but i dont have BMC patrol agent
regds
Rajesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2010 12:41 AM
08-17-2010 12:41 AM
Re: vmstat output - very urgent please
you can use glance also but it is licensed product from HP.
You can also use ps command:
#ps -eo pcpu,pid,user,args | sort -r -k1 | less
below command display comparison of CPU utilization; 2 seconds apart; 5 times, use:
# sar -u 2 5
To get multiple samples and multiple reports set an output file for the sar command. Run the sar in command as a background process using.
# nohup sar -o output.file 12 8 >/dev/null 2>&1 &
Note to display data stored in output-file pass -f option to sar command:
# sar -f output-file
below command displays per-processor statistics; 12 seconds apart; 5 times
# mpstat 12 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2010 08:33 PM
08-17-2010 08:33 PM
Re: vmstat output - very urgent please
uptime command provides average CPU utilization for the past 15 minutes.
e.g.
# uptime
9:57am up 12 days, 18:40, 1 user, load average: 0.00, 0.01, 0.01
The last value (0.01) is the average cpu load for the past 15 minutes.
Do you have Performance Agent or Glance Plus installed in your system? If yes, the metric "GBL_CPU_TOTAL_UTIL_HIGH" provides the highest CPU utilization value that your system has ever reached.
HTH
Muru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2010 09:46 AM
08-18-2010 09:46 AM
Re: vmstat output - very urgent please
uptime is probably a poor way to measure CPU utilization. It measures run queue length.