- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HPUX 11.x 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
05-19-2005 07:56 PM
05-19-2005 07:56 PM
Is it a free tool or any other script?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2005 08:36 PM
05-19-2005 08:36 PM
Re: HPUX 11.x Monitoring
http://www.zabbix.com
http://www.nagios.org
I prefer Zabbix, because it's much simplier than nagios. The problem is, that Zabbix, doesn't have any buil it monitors for HPUX, so you'll have to provide the script, but it's not a problem.
With sar and ps you can see the cpu usage and find the "heaviest" process in the system.
I used them both on HPUX servers and they both work fine.
Alex.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2005 11:13 PM
05-19-2005 11:13 PM
Re: HPUX 11.x Monitoring
Alex.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2005 11:23 PM
05-19-2005 11:23 PM
Re: HPUX 11.x Monitoring
u can use top and sar which r free tools. also u can get evaluation version of glance which is free u need to get a evaluation license from hp the software is in the installation cd.i have a script for monitoring provided by someone i dont know but on this forum.attaching the script.
regards
Pravin S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2005 11:25 PM
05-19-2005 11:25 PM
Re: HPUX 11.x Monitoring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 12:28 AM
05-20-2005 12:28 AM
Re: HPUX 11.x Monitoring
sar is most useful and free tool to monitor the CPU usage. you can use sar command as:
# sar -u 1 10
Here 1 is the time interval in sec to collect the sample and 10 is no of samples to collect.
It will return the output in this manner.
08:16:59 %usr %sys %wio %idle
08:17:00 1 1 0 98
08:17:01 0 1 0 99
08:17:02 0 0 0 100
08:17:03 0 1 0 99
08:17:04 0 0 0 100
08:17:05 1 4 1 94
08:17:06 0 1 0 99
08:17:07 3 1 0 96
08:17:08 1 4 0 95
08:17:09 0 0 0 100
Average 1 1 0 98
Try to understand the significance of each column and it's value. To know more see man sar.
Also attaching performance cookbook for more reference.
Hope that helps.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 12:31 AM
05-20-2005 12:31 AM
Re: HPUX 11.x Monitoring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 12:38 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2005 01:08 AM
05-23-2005 01:08 AM
Re: HPUX 11.x Monitoring
Other free tool is top which can be used interactive or in a script like this
top -n 300 -f top.log
Thanks
Basheer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2005 01:32 AM
05-23-2005 01:32 AM
Re: HPUX 11.x Monitoring
Here is one script for memory top users.
Regards,
Borislav
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2005 01:43 AM
05-23-2005 01:43 AM
Re: HPUX 11.x Monitoring
I'm able now to get a list of 'undesirable' process.