- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Cpu LOAD command
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
01-25-2002 02:01 AM
01-25-2002 02:01 AM
Cpu LOAD command
i would like to knom with which command can i get the load of the cpu. Just the load.
Whith a "top", i have all and with a "sar 1 10"
i haven't the value of the load.
Must i use a grep or awk command to extract this value ?
Thanks for all
Michel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2002 02:05 AM
01-25-2002 02:05 AM
Re: Cpu LOAD command
The uptime command will show you the cpu load for the last 1, 5 and 15 mins.
# uptime
man 1m uptime for more information. You can interface uptime with scripting to extract the current load eg.:
# uptime | awk '{print $10}' | cut -d\, -f1
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2002 02:05 AM
01-25-2002 02:05 AM
Re: Cpu LOAD command
Would the system load given by uptime be enough?
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2002 02:17 AM
01-25-2002 02:17 AM
Re: Cpu LOAD command
the load average for the last minute
the load average for the last fifht minute
the load avearge for the last fithteen minute ?
Thanks !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2002 02:33 AM
01-25-2002 02:33 AM
Re: Cpu LOAD command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2002 02:47 AM
01-25-2002 02:47 AM
Re: Cpu LOAD command
Note that it is not the uptime at the 1st, 5th or 15th minute. Rather, it is the average of the load spread over the last 1 min, over the last 5 mins and over the last 15 mins.
Hope this helps. Regards.
Steven Sim Kok Leong