- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Memory 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
07-27-2006 03:53 AM
07-27-2006 03:53 AM
We are trying to monitor our memory usage on a system without glance, however none of the tools i have tried (vmstat, top) will give me the breakdown (or a total memory usage WITHOUT cache)
Am I missing something?? If not, then is there a way to do this??
thanks,
Adam
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 04:03 AM
07-27-2006 04:03 AM
Re: Memory Monitoring
And did you already tried the trial version of sam, it will work for 60 days, and you can monitor everything that you want for that period of time.
Regards,
Jaime.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 04:05 AM
07-27-2006 04:05 AM
Re: Memory Monitoring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 04:14 AM
07-27-2006 04:14 AM
Re: Memory Monitoring
Jaime.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 04:15 AM
07-27-2006 04:15 AM
Re: Memory Monitoring
I see that I've got 24.0 G total ram on a server, and Sys Mem is 3.7G, and Buf Cache is 1.2G and user Mem is .5G and Free Mem is 18.7 G. So, Mem usage without Cache is :
Sys Mem + User Mem =
3.7G + .5G = 4.2 G.
And Free Mem (without Cache) is :
Free Mem + Buf Cache =
18.7G + 1.2G = 19.9G.
Does this get it for you, or are you looking for something else?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 04:16 AM
07-27-2006 04:16 AM
Re: Memory Monitoring
I see that I've got 24.0 G total ram on a server, and Sys Mem is 3.7G, and Buf Cache is 1.2G and user Mem is .5G and Free Mem is 18.7 G. So, Mem usage without Cache is :
Sys Mem + User Mem =
3.7G + .5G = 4.2 G.
And Free Mem (without Cache) is :
Free Mem + Buf Cache =
18.7G + 1.2G = 19.9G.
Does this get it for you, or are you looking for something else?
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 04:17 AM
07-27-2006 04:17 AM
Re: Memory Monitoring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 04:18 AM
07-27-2006 04:18 AM
SolutionMany of these elements directgly affect the use of memory, and others are shared which essentially reduces the use of memory. Most of these values require intimate knowledge of kernel entry points and will require looking at the HP-UX Internals book.
But the real question is: why bother? Because HP-UX is a virtual memory kernel, you can run whatever you want and memory and swap space will be allocated as needed. If you run out of swap space, just add another disk. Of course, using swap space seriously affects performance so look at vmstat column po (page out) to see how much paging is being done.
Now if you are asking: how much RAM does each program consume? then a crude asnwer is this line:
UNIX95= ps -e -o vsz,ruser,pid,ppid,args sort -rn
So unless you have lots of time to study the Internals book and do some heavy scripting, get a copy of Glance.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 04:31 AM
07-27-2006 04:31 AM