- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Make Tool for monitor!
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
06-15-2005 02:51 PM
06-15-2005 02:51 PM
Make Tool for monitor!
My company system:
- HPUX B.11 9000/800
- Oracle 8.1.7
- Bea Tuxedo 7.1
We use glance Utility to monitor the system and write 3 parameters CPU,DISK,MEMOMRY to file every 3 mins for the statistic reports. Now I want to write a program which do this task automatic. I have some questions:
1. How to export glance to file?
2. glance Utility run on the background will occupy the resource system(CPU,MEM,DISK)?
3. what is the sar, vmstat Utility?
Thanks alot,
pavenvn
PS: My program overview:
1> Server:
Create cronjobs: every 2 mins output to text file. In cronjob run one of the following Utility:
- sar -u 1 1
- glance ????
- vmstat ???
2> Client have 2 program:
- A program use FTP to get data and standardize data. Then put to the database.
- A program have GUI to display the data which get from the database. I f CPU, MEM,DISK > 90% to raise alrm!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2005 08:28 PM
06-15-2005 08:28 PM
Re: Make Tool for monitor!
type:
mwa status
if this comes back with some meaningful information, then you have measureware installed - now take a look at the man page for 'extract' for info on how to get data out of measureware.
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2005 09:08 PM
06-15-2005 09:08 PM
Re: Make Tool for monitor!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2005 08:13 PM
06-19-2005 08:13 PM
Re: Make Tool for monitor!
for example, I would like to have CPU usage in past an hour.
In cron,
01 01 * * * /opt/perf/bin/glance -adviser_only -syntax /tmp/temp -iterations 60 -j 60 >/tmp/cpu.log &
# cat /tmp/temp
print "cpu=", gbl_cpu_total_util|7|0, "%"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2005 07:26 PM
06-20-2005 07:26 PM
Re: Make Tool for monitor!
The monitor program which I want to write must raise ALARM when CPU/MEM/DISK > 95%. It means that the program is background program (every 3 mins refresh).