Re: Performance monitoring for web applications

2006-09-11 Thread Michele Mazzucco
You could also try this tool (I haven't used it): http://www.hyperic.com/products/ It uses this library http://www.hyperic.com/products/sigar.html which can be downloaded from Sourceforge. Michele Michael Echerer wrote: Shimol Shah wrote: Hi, Hi, I am trying to look for a way to

Re: Performance monitoring for web applications

2006-09-10 Thread Michael Echerer
Shimol Shah wrote: Hi, Hi, I am trying to look for a way to programmtically find CPU resources used and memory used for indivudual web applications. I have given it many tries on Google but only thing I could find was some third party tool vendors that give solutions to performance

Re: Performance monitoring for web applications

2006-09-10 Thread Martin Gainty
. - Original Message - From: Michael Echerer [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Sunday, September 10, 2006 9:56 AM Subject: Re: Performance monitoring for web applications Shimol Shah wrote: Hi, Hi, I am trying to look for a way to programmtically

Re: Performance monitoring for web applications

2006-09-09 Thread Leon Rosenberg
Rethinking my previous reply I now think what you want is possible, even hard to achive. But if you measure the time spent in each application in an amount of time you will get relative CPU usage for those webapps; now measuring the cpu time for the VM in the same amount of time (for example by

Performance monitoring for web applications

2006-09-08 Thread Shimol Shah
Hi, I am trying to look for a way to programmtically find CPU resources used and memory used for indivudual web applications. I have given it many tries on Google but only thing I could find was some third party tool vendors that give solutions to performance monitoring. Instead what I am

Re: Performance monitoring for web applications

2006-09-08 Thread Leon Rosenberg
I don't think that this is possible, simpy because all your webapps are running in one jvm, which is one process for the cpu. You could try to identify separate threads, but i'm sceptical that this works. regards Leon On 9/8/06, Shimol Shah [EMAIL PROTECTED] wrote: Hi, I am trying to look for