Quote Originally Posted by shachar View Post
[LIST=1][*] What are the "Program Arguments" you used?
Here you go...
Code:
--configuration=default -b 0.0.0.0 -Djboss.server.base.url=file:/C:/JBoss/Spring-Insight/jboss-eap-exe-5.1/jboss-as/server/ -Djboss.service.binding.set=ports-03 -L=C:/JBoss/Spring-Insight/jboss-eap-exe-5.1/jboss-as/server/default/lib/insight-annotation-1.8.3.RELEASE.jar -L=C:/JBoss/Spring-Insight/jboss-eap-exe-5.1/jboss-as/server/default/lib/insight-bootstrap-jboss-5.1.0.GA-1.8.3.RELEASE.jar -L=C:/JBoss/Spring-Insight/jboss-eap-exe-5.1/jboss-as/server/default/lib/insight-intercept-1.8.3.RELEASE.jar -L=C:/JBoss/Spring-Insight/jboss-eap-exe-5.1/jboss-as/server/default/lib/insight-util-1.8.3.RELEASE.jar


Quote Originally Posted by shachar View Post
  • Can you describe your application:
    • Is it a WAR or an EAR application?
    • Are you using a datasource defined in the server? or the datasource is defined in the application?
    • From where the Hibernate (or JDBC) jars are loaded?
      • from the application class loader - they are located in my-app/WEB-INF/lib
      • from the shared class loader - they are located in my-server/lib
      • from the system class loader - they are defined in the classpath
My application is an online booking system deployed to IBM Websphere portal. It talks via spring remoting with a service layer running on JBoss built using spring/hibernate/CXF. We are having performance issues with one of the modules in the service layer. Thats where we want spring insight to help and identify the performance bottlenecks.

The service layer is deployed as an .ear file on Jboss. The datasources are defined on the server.

The hibernate jar files are loaded from jbosass/common/lib.


BTW, I tried adding @InsightOperation and @InsightEndPoint annotations to the methods in one of the methods that I was sure of being called, but this didn't change anything on what I was seeing on the dashboard.

Do I need to do something more, in order to see how long a method takes to execute, and what each method is doing (like calling other methods, database operations etc)...

Thanks
Guru