What is the best way to monitor memory and CPU usage in AIX 4.3.3

What is the best way to monitor memory and CPU usage in AIX 4.3.3

Post by Vasoo Veerape » Fri, 12 Jul 2002 14:05:30



Hello all,

I have a Lotus Domino 5.0.4 server running on an AIX 4.3.3 box. Ever since
we upgraded the Notes applications, the machine now regularly overloads with
the swap file being used at 40%. I have run a "ps vg" and have seen the
offending processes but would like to know if there is anything better than
just using "ps", "sar" or "top"

Thanks

 
 
 

What is the best way to monitor memory and CPU usage in AIX 4.3.3

Post by Montse Pererna » Fri, 12 Jul 2002 14:56:17


Hello,
I dont know if is better or is worse but sometimes I use  topas  or vmstat and
there are quite properly for me.
    Montse

> Hello all,

> I have a Lotus Domino 5.0.4 server running on an AIX 4.3.3 box. Ever since
> we upgraded the Notes applications, the machine now regularly overloads with
> the swap file being used at 40%. I have run a "ps vg" and have seen the
> offending processes but would like to know if there is anything better than
> just using "ps", "sar" or "top"

> Thanks


 
 
 

What is the best way to monitor memory and CPU usage in AIX 4.3.3

Post by Erik Klui » Fri, 12 Jul 2002 21:34:25


Try nmon: http://www-1.ibm.com/servers/esdd/articles/analyze_aix/index.html

Erik Kluit

Quote:> Hello all,

> I have a Lotus Domino 5.0.4 server running on an AIX 4.3.3 box. Ever since
> we upgraded the Notes applications, the machine now regularly overloads
with
> the swap file being used at 40%. I have run a "ps vg" and have seen the
> offending processes but would like to know if there is anything better
than
> just using "ps", "sar" or "top"

> Thanks

 
 
 

What is the best way to monitor memory and CPU usage in AIX 4.3.3

Post by John Crothe » Sat, 13 Jul 2002 00:07:37


Try Jussi Maki's monitor utility, available from:

http://www.bullfreeware.com/


> Hello all,

> I have a Lotus Domino 5.0.4 server running on an AIX 4.3.3 box. Ever since
> we upgraded the Notes applications, the machine now regularly overloads with
> the swap file being used at 40%. I have run a "ps vg" and have seen the
> offending processes but would like to know if there is anything better than
> just using "ps", "sar" or "top"

> Thanks

 
 
 

What is the best way to monitor memory and CPU usage in AIX 4.3.3

Post by Timothy J. Boga » Sat, 13 Jul 2002 05:36:59




>Hello all,

>I have a Lotus Domino 5.0.4 server running on an AIX 4.3.3 box. Ever since
>we upgraded the Notes applications, the machine now regularly overloads with
>the swap file being used at 40%. I have run a "ps vg" and have seen the
>offending processes but would like to know if there is anything better than
>just using "ps", "sar" or "top"

Being in the middle of chasing possible memory leaks myself,

#!/bin/ksh

while true;
        do
        date >> psstuff
        ps auxww >> psstuff
        sleep 300
        done

then lets me grep for any of the myriad domino processes (server and router seem to suck up memory)
and get serious about some longer term monitoring.

Right now I am seeing big differences in memory used every 24 hours, for the first 3 days of
running two servers side by side.

Even at that, the ps seems only to be telling me part of the story - there seems not only memory
going into a fat layer on the notes processes, but there seems to be some getting 'lost' - but I haven't
crunched enough numbers yet...

Cheers

--
"I'm a big fan of ignorance based techniques, because humans
have a lot of ignorance, and we want to play our strong suit."
  Eric Lander  New Scientist

 
 
 

What is the best way to monitor memory and CPU usage in AIX 4.3.3

Post by salligato » Thu, 18 Jul 2002 11:51:04


use topaz or a program called monitor

Quote:> Hello all,

> I have a Lotus Domino 5.0.4 server running on an AIX 4.3.3 box. Ever since
> we upgraded the Notes applications, the machine now regularly overloads
with
> the swap file being used at 40%. I have run a "ps vg" and have seen the
> offending processes but would like to know if there is anything better
than
> just using "ps", "sar" or "top"

> Thanks