what is the fastest way to get performance metrics of all spring services?
views:
66answers:
3
+1
A:
You'll prob need to quantify exactly what you want to get out of your application in terms fo performance metrics. For a start though take a look at Beet, a performance and monitoring tool for Spring based apps:
There's also an article here than describes how to use Beet to gather performance metrics (such as method call timings):
http://www.gridshore.nl/2009/09/01/using-beet-to-monitor-your-spring-framework-application/
Jon
2010-06-28 01:07:56
Beet is indeed interesting. However, official Spring 3.0 support has yet to be released.
Pascal Thivent
2010-06-28 01:15:28
+4
A:
You could use JAMon and apply the JamonPerformanceMonitorInterceptor
on your services.
Pascal Thivent
2010-06-28 01:09:16
+1
A:
Why not just try the PerformanceMonitorInterceptor? You don't have to write anything that way, just configure it to advise all your service method calls.
duffymo
2010-06-28 01:35:02