Java API that allows developers to easily monitor production applications
Questions tagged [jamon]
25 questions
5
votes
1 answer
Using jamon.war on tomcat
I'm using JAMon, and I want to use the jamon.war to monitor my app. However, my app and the jamon.war app have different classloaders, and therefore they don't see each other's static variables (where the data is stored, as far as I understand). I…

Bozho
- 588,226
- 146
- 1,060
- 1,140
2
votes
2 answers
Using JAMon with Spring 5 and log4j2
I'm in the middle of a upgrade for an application currently moving Spring core from 4.3 to 5.2 (yeah, trying the milestone expecting the LTS release) and it requires us to move to log4j2.
The problem we have so far is that I cannot seem to find…

Alfabravo
- 7,493
- 6
- 46
- 82
2
votes
1 answer
Using jamon in Spring
I am trying to use Jamon in my spring app to but i don't see any messages here's my context.xml definitions for jamon .
…

urag
- 1,228
- 9
- 28
1
vote
2 answers
Tapestry hook: start of rendering and end of rendering
I am trying to use jamon to collect statistics (time to render a web page) of a website using tapestry.
How can I proceed to have
a method executed when the request is received by the server, i.e. the start of the rendering ?
a method executed when…

Matthieu Napoli
- 48,448
- 45
- 173
- 261
1
vote
1 answer
How can I get JAMon metrics in JConsole (via JMX)
As per this document we should be able to view JAmon metrics in JConsole. However I just can't find anything about JAmon in my JConsole session:
The session is connected to a local Catalina (tomcat 7) instance running an application with JAMon…

Gelin Luo
- 14,035
- 27
- 86
- 139
1
vote
2 answers
Annotation-based usage of jamon in spring?
To use jamon in spring, it's described to use JamonPerformanceMonitorInterceptor and put it to springs AOP-mechanism via a applicationContext.xml. It's explained, and there's an example within the tests in it's sources. Unfortunately, I want to…

Rainer Jung
- 636
- 7
- 23
1
vote
3 answers
configuartion settings for JAMon in jboss 7
I am trying to configure jamon (http://jamonapi.sourceforge.net/http_monitoring.html) in jboss 7. The configuration instructions that are given on jamon website are for older jboss (40.5/4.2). Can any one help me with the equivalent JAMon…

Madasu K
- 1,813
- 2
- 38
- 72
1
vote
1 answer
Accessing Jamon monitoring on Wildfly shows 403/Forbidden
I'm trying to deploy the newest version of Jamon on the newest version of wildfly. You can download the versions here:
Wildfly 8.1.0
Jamon 2.79
To get the .war deployed you need to include the 'jamon-279.jar' into the lib-Folder of the 'jamon.war'…

sylo
- 207
- 3
- 16
1
vote
2 answers
eclipse IDE import cannot be resolved error
I am using eclipse IDE to build a Spring project, that identifies the execution time of a module, to get that I am using jamonapi.monitorfactory, I added external jamonapi-all.jar in the project build, but still I get the import com.jamonapi…

karthik
- 15
- 1
- 4
1
vote
1 answer
@Controller class instantiated twice with Spring AOP
I am trying to use Spring AOP for profiling my Controllers, but as soon as I enable monitoringAdvisor in my servlet context xml my @Controller class constructor gets called twice with below mentioned stacks.
I assume it has something to do with…

Rahul
- 824
- 1
- 12
- 27
1
vote
2 answers
How do I measure the SOAP processing time of a JAX-WS WebMethod?
Interface:
import javax.jws.WebService;
import javax.jws.WebMethod;
@WebService(name="Webservice")
public interface IWebservice{
@WebMethod
public Collection doSthg();
}
I would like to measure the time, how long it takes JavaWS…

seb
- 4,279
- 2
- 25
- 36
1
vote
1 answer
How do I disable public access to a jamon admin page?
How do I disable public access to the Jamon admin jsp page in a Spring / Java EE web app?

roark
- 792
- 1
- 12
- 29
0
votes
1 answer
Jamon with DB2 url
I am using IBM DB2. I want to introduce jamon to track sql performance. My connection url is:
jdbc:db2://localhost:50005/MyDB:currentSchema=CMSDB;
When I use Jamon, I am not sure what changes I should make to the url. I found an example for Sybase…

Sripaul
- 2,227
- 9
- 36
- 60
0
votes
1 answer
How does Spring encode POJOs in GET requests for @ModelAttribute?
I have a Spring MVC controller set up like so:
@RequestMapping("activityChart")
public ModelAndView activityChart(
@RequestParam(required=false, value="parent") String parent,
@RequestParam(required=false, value="expand") String[] expand,
…

HenryR
- 8,219
- 7
- 35
- 39
0
votes
1 answer
JAMon do not work after serialization+deserialization
The flow of my performance testing needs JAMon monitor to go through these steps:
created,
serialized
deserialized
deserialized copy to be stopped
But the following scenario do not work (step 4 has no effect).
Could you provide me a…

JRr
- 1,552
- 1
- 19
- 23