A friendly place for programming greenhorns!
Big Moose Saloon
Search
|
Java FAQ
|
Recent Topics
Register / Login
JavaRanch
»
Java Forums
»
Java
»
Performance
Author
which tools do you use to monitor your application performance?
raminaa niilian
Ranch Hand
Joined: Jul 14, 2005
Posts: 550
posted
Apr 07, 2007 06:35:00
0
Hi
Thank you for reading my post.
which tools you use to monitor your web/j2ee applications?
I mean to monitor how much sql statements executed and time that they used,
java
methods execution and their time, count,....
Thanks
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35258
7
posted
Apr 07, 2007 06:47:00
0
JAMon
is pretty popular.
Also note the
EnterprisePerformance
wiki page.
[ April 07, 2007: Message edited by: Ulf Dittmer ]
Android apps
–
ImageJ plugins
–
Java web charts
steve souza
Ranch Hand
Joined: Jun 26, 2002
Posts: 852
posted
Apr 09, 2007 10:37:00
0
Per the enterprise monitoring link mentioned above monitoring sql calls with jamon couldn't be easier. No code changes are required just use the jamon
jdbc
proxy driver to point to the real jdbc driver.
Class.forName("com.jamonapi.proxy.JAMonDriver"); Connection conn = DriverManager.getConnection("jdbc:jamon:sybase:Tds:myserver.mycompany.com:2638" + "?jamonrealdriver=com.sybase.jdbc2.jdbc.SybDriver");
http://www.jamonapi.com/
- a fast, free open source performance tuning api.
JavaRanch Performance FAQ
I agree. Here's the link:
http://ej-technologies/jprofiler
- if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
subject: which tools do you use to monitor your application performance?
Similar Threads
error while connecting to webservices
JBoss cluster health
Performance Tuning Java Web Application
DB2 v9 slower than DB2 v8 while inserting DDL and DML Scripts using Ant script
.JAR file appears to stop running
All times are in JavaRanch time: GMT-6 in summer, GMT-7 in winter