- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- CPU, MEMORY AND SWAP USAGE
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
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
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-27-2010 10:10 AM
тАО05-27-2010 10:10 AM
- CPU TOTAL USAGE
- MEMORY TOTAL USAGE
- CPU USAGE PER PROCESS
- MEMORY USAGE PER PROCESS
- SWAP USAGE.
REGARDS,
CHARLES PUYOL
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-27-2010 10:26 AM
тАО05-27-2010 10:26 AM
SolutionThere is no need to type in all CAPITAL LETTERS.
Perhaps the best tool for HP-uX performance analysis is 'glance'. It will provide all of the statistics you want. In its absence:
You can also use 'sar' or 'top' to monitor CPU utilization.
Memory utilization can be measured with tools like 'vmstat' or 'top'.
Swap utilization can be viewed with 'swapinfo'. The page-out activity seen by 'vmstat' is also important to examine here.
As for CPU and/or memory utilization on a per-process basis, you can use something like:
# UNIX95= ps -ef -ovsz,pid,comm|sort -rnk3,3|more
...to sort the process from largest to smallest memory footprint.
# UNIX95= ps -ef -opid,uid,time|sort -rk3,3|more
Regards!
...JRF...
- Tags:
- UNIX95
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-27-2010 10:36 AM
тАО05-27-2010 10:36 AM
Re: CPU, MEMORY AND SWAP USAGE
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-28-2010 06:12 AM
тАО05-28-2010 06:12 AM
Re: CPU, MEMORY AND SWAP USAGE
you can also try:
#gpm (graphical)
#glance (terminal)
HP GlancePlus is a powerful and easy-to-use online performance
diagnostic tool for HP-UX systems. It consists of two components: a
Motif-based program, "gpm", and a character mode program, "glance".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-28-2010 09:25 PM
тАО05-28-2010 09:25 PM
Re: CPU, MEMORY AND SWAP USAGE
1. top : which process is eating the CPU, CPU utilization
2. sar ├в u :├в Shows CPU activity
3. sar ├в w : The Memory Switching and Swapping Activity
4. vmstat : report virtual memory statistics
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-28-2010 09:34 PM
тАО05-28-2010 09:34 PM
Re: CPU, MEMORY AND SWAP USAGE
1. top : which process is eating the CPU, CPU utilization
2. sar -u :Shows CPU activity
3. sar -w : The Memory Switching and Swapping Activity
4. vmstat : report virtual memory statistics