Re: Tomcat memory alert

2005-04-14 Thread Ronaldo Arrudas
Hi carlos: I think a nice way is to deploy a simple TimerTask inside any webapp to do this work. You could use anything like the following to help you: import java.util.*; public class MemoryWatchDog extends TimerTask{ private static Timer currentTimer = null; public static void

Tomcat memory alert

2005-04-13 Thread Carlos Rule
Hello all, newbie here. Does anyone know if there is a reliable way of setting up an alert to tell me whenever the Tomcat (5.0.25) process reaches a certain level of memory usage? Many thanks! Carlos

RE: Tomcat memory alert (UNCLASSIFIED)

2005-04-13 Thread Samara, Fadi N Mr ACSIM/ASPEX
[mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 10:10 AM To: 'Tomcat Users List' Subject: Tomcat memory alert Hello all, newbie here. Does anyone know if there is a reliable way of setting up an alert to tell me whenever the Tomcat (5.0.25) process reaches a certain level of memory usage

RE: Tomcat memory alert (UNCLASSIFIED)

2005-04-13 Thread Carlos Rule
: Samara, Fadi N Mr ACSIM/ASPEX [mailto:[EMAIL PROTECTED] Sent: 13 April 2005 15:15 To: 'Tomcat Users List' Subject: RE: Tomcat memory alert (UNCLASSIFIED) Classification: UNCLASSIFIED Caveats: NONE I suspect this might be an OS level issue. If you are behind Active directory, I for sure know you

RE: Tomcat memory alert (UNCLASSIFIED)

2005-04-13 Thread Samara, Fadi N Mr ACSIM/ASPEX
- From: Carlos Rule [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 10:29 AM To: 'Tomcat Users List' Subject: RE: Tomcat memory alert (UNCLASSIFIED) Thanks for your response. I think you are probably right about it being an OS level issue. Is there any third party software which monitors

Re: Tomcat memory alert (UNCLASSIFIED)

2005-04-13 Thread farhad
You can add these two options to your VM and monitor /tmp/gcOutput log file -verbose:gc -Xloggc:/tmp/gcOutput , or you can add a timer MBean to your server to ping your VM. - To unsubscribe, e-mail: [EMAIL PROTECTED] For