From: <ko...@sw...> - 2007-05-02 14:01:33
|
Jens Schumann wrote: > > There are two issues that come to my mind: > 1. You need to configure the EtmManager programatically. > 2. Since we are using a static here the typical Java (EE) classloader > issues can occur. > Hi Jens Thanks for the fast answer. For point 1: I've done that, of course ;-). For point 2: Yes, i was afraid of that. To be more precise about my application. We have a web application that talks to the server side application via RMI (EJB). The web application is deployed as a .war the server application as a .ear in the same JBoss instance (at least in the development environment on my personal machine). For some reason we use class loader seperation for the web application. Both deployment units contain the Jetm libraries. In the web application i configured Jetm as described in the documentation. This works fine and i now monitor all interesting HTTP requests. Now i also want to monitor some methods on the server side. As describes i weaved the monitoring aspect in the classes and configured and started the ETMMonitor in the central application class. Unfortunately i don't see any measurements from the weaved classes here. I think i will get a little bit deeper into the class loader things. I will post my findings here, of course. Thanks again Christian |