- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to find max peak mem 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
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
09-01-2005 07:58 PM
09-01-2005 07:58 PM
How to find max peak mem usage?
How i can find the maximum peak memory usage used by my server for all this time.
(i want to know all instance my server used its for a maximum level.
Thank You
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 08:07 PM
09-01-2005 08:07 PM
Re: How to find max peak mem usage?
The best way for capturing the memory usage and system resouce usage using HP Measureware/Perfview tool.
OR,
Just run the glance and capture to the file
# glance -f
This session exits after certain interval, again you have to capture in other file.
Also you can use utility like sar, vmstat..
Regard,
Rajesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 08:15 PM
09-01-2005 08:15 PM
Re: How to find max peak mem usage?
I want to see for the past also, say for for last 30 days when was my memory usage was more.. may tell peak
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 08:28 PM
09-01-2005 08:28 PM
Re: How to find max peak mem usage?
#!/bin/ksh
while [ 1 ]
do
> top.log
top -h -d1 -n1 -f top.log
grep -E 'System|Memory' top.log >> /var/system_mem.log
sleep 300
done
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 08:29 PM
09-01-2005 08:29 PM
Re: How to find max peak mem usage?
As I know,there is no such way by default in thep HPUX to capture the history for Memory Usage, unless you have tools like Measureware agent installed and running.
Regards,
Rajesh