- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Ram and Swap monitoring
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-13-2003 07:43 AM
01-13-2003 07:43 AM
On HP9000 (RP5400 2-CPU, HP-UX 11.11) How/what do I monitor to determin if swap activity is excessive and RAM is low?
Thanks
Mike
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2003 08:09 AM
01-13-2003 08:09 AM
Re: Ram and Swap monitoring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2003 08:34 AM
01-13-2003 08:34 AM
Re: Ram and Swap monitoring
Then run the attached scripts for a reasonable time period and look at the output. If you hae glance you can look at things graphically, buy the attached scripts, which were sent to me by HP Support and are tested let you collect data and look at it later.
Pretty slick.
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
01-14-2003 09:40 AM
01-14-2003 09:40 AM
Re: Ram and Swap monitoring
Thanks
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2003 09:46 AM
01-14-2003 09:46 AM
Re: Ram and Swap monitoring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2003 09:47 AM
01-14-2003 09:47 AM
Re: Ram and Swap monitoring
You may like to see the o/p in thsi form :
Memory Stat total used avail %used
physical 4096.0 724.4 3371.6 18%
active virtual 200.1 34.4 165.7 17%
active real 110.3 33.1 77.2 30%
memory swap 3148.6 119.9 3028.6 4%
device swap 1024.0 284.2 739.8 28%
I got a cscript in the forums which can be easliy compiled and run whever you want to . I am atachignt he script
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2003 09:50 AM
01-14-2003 09:50 AM
SolutionThe total of 61% includes reservation policy and does not necessarily mean that you are swapping.
Do a swapinfo and ignore the memory entry. If the entries other than memory show some percentage (means in kb USED) means there was some page out activity. The total figure in swapinfo -t tells you how much virtual memory you have on the system and may not necessarily mean that memory consumption is high.
Glance/gpm can give you good stats. If you don't have them, then vmstat is the next default tool that can allow you to monitor the memory.
Do a "vmstat 2 20" and observe and free column. Multiply with 4k and you will get the free memory in MB. Compare it with what you have on the system.
Look at po column. As long as it is low (<10) means you are ok. If it is constantly > 10 and if your free mem is less, then your system is bottlenecking on memory. This in conjection with swapinfo will help you determine the memory resources.
-Sri