- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Monitoring of Memory
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-18-2003 09:38 AM
08-18-2003 09:38 AM
Monitoring of Memory
I'd to monitor the cpu and memory utilization during the day.
To monitor the cpu I use the sar tool (in my case: sar -uM -o ./CPU_activity.sar 60 600).
I'd to know if there is something similar for the memory? I've seen vmstat, but I prefer a tool that show the percentage use of physics memory.
Thanks in advance,
M
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 09:42 AM
08-18-2003 09:42 AM
Re: Monitoring of Memory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 09:52 AM
08-18-2003 09:52 AM
Re: Monitoring of Memory
physical memory reporting in Unix is less than accurate.
Memory fills with what may be needless data. For example, a utility that you only use at startup, will remain in memory until something else needs the physical memory.
Thus memory nlooks occupied, but is really available, in that the very next request will be served by a one time swapping out of the useless data.
Swap statisisics are the more meaningful metric.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 09:52 AM
08-18-2003 09:52 AM
Re: Monitoring of Memory
Take a look at this link, there are some commands and a script to monitor your memory.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xcf41fdd65cf5204b9213af00f88fca94,00.html
Kind regards,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 04:37 PM
08-18-2003 04:37 PM
Re: Monitoring of Memory
You can then use cron to run it periodically and append the result to a file (with the date and time).
Tim.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 05:04 PM
08-18-2003 05:04 PM
Re: Monitoring of Memory
It gives you virtual memory statistics. One thing to look for in these statistics is the amount of paging activity, shown under po. A number greater than zero means that the system is paging. Response time will be a slow if too many processes are blocked (b). The cause is often insufficient RAM.