Operating System - HP-UX
1752571 Members
5250 Online
108788 Solutions
New Discussion юеВ

hourly basis statistics for HP-UX

 
SOLVED
Go to solution
Ariyan Jetrov
Advisor

hourly basis statistics for HP-UX

Hi Admins,

Is there any way to find out memory, CPU, disk usage and network traffic statistics in hourly basis for HP-UX?

TIA-Ariyan
9 REPLIES 9
Autocross.US
Trusted Contributor

Re: hourly basis statistics for HP-UX

Configure sar. Check the man page for more info.
I drive way too fast to worry about calories.
Kranti Mahmud
Honored Contributor

Re: hourly basis statistics for HP-UX

Hi Ariyan,

If you have perfstat installed on the system, you can use extract command to get the desired data.

Rgds-Kranti
Dont look BACK as U will miss something INFRONT!
Kranti Mahmud
Honored Contributor
Solution

Re: hourly basis statistics for HP-UX

Hi Ariyan,

Check this below links for script:

http://www.hpux.ws/?p=8

http://www.hpux.ws/?p=6

Rgds-Kranti
Dont look BACK as U will miss something INFRONT!
Tingli
Esteemed Contributor

Re: hourly basis statistics for HP-UX

As mentioned before, put those two lines to root crontab.

0 * * * * /usr/lib/sa/sa1
0 23 * * * /usr/lib/sa/sa2 -A

Then you can check the files under /var/adm/sa.
Mel Burslan
Honored Contributor

Re: hourly basis statistics for HP-UX

check into setting up statmon for your server. I do not have the exact details but google is your friend.
________________________________
UNIX because I majored in cryptology...
Olivier Masse
Honored Contributor

Re: hourly basis statistics for HP-UX

If you have anything beyond the Base OS, then HP-UX should come with Performance Agent built-in, collecting data automatically. It's much better than sar in my opinion. While it's designed to be integrated with Performance Manager (for which you have to pay), you can use "extract" to get all the information you need, for free.

Good luck
dirk dierickx
Honored Contributor

Re: hourly basis statistics for HP-UX

popular open source tool that could help is 'cacti', found here:

http://www.cacti.net/index.php
Viktor Balogh
Honored Contributor

Re: hourly basis statistics for HP-UX

cacti is nice, but i prefer PerfView. it is a native HP tool for monitoring performance. it can make more professional graphs than cacti, and all the managers like graphs... ;P

http://h71036.www7.hp.com/hpux11i/cache/325436-0-0-0-121.html
****
Unix operates with beer.
Ariyan Jetrov
Advisor

Re: hourly basis statistics for HP-UX

Thnx all