2
votes
2answers
45 views

CPU percent being used by GC using JMX

I am trying to write a program that uses JMX to find the percentage of CPU being used for GC activity by the JVM at that moment of time(or for a small subset of time say 1 sec), similar to what ...
1
vote
1answer
18 views

JMXBean entries are not showing up

Implementation of JMXBean PerformanceMetadata jmxBean = new PerformanceMetadata(); responseDocument = (Document) serviceOperation.invoke(serviceComponent,RequestDocument); ...
0
votes
1answer
19 views

JMX Bean for few types of Requests

I want to show performance statistics for particular request type. When Controller class gets the HTTP Request from browser, it then marshals request xml in to a request object. From request object I ...
0
votes
2answers
186 views

Hibernate and Ehcache statistics via JMX on production

I have a question more about opinions and experience rather then technical solution. What do you think about turning on Hibernate statistics and Ehcache statistics via JMX console on production ...
0
votes
1answer
61 views

Maintaining JMX connections and load on Remote MBeanServer and JVM

In my application I creating and maintaining Multiple connections with Remote JVM's MBeanServer. I want to pool these connections. But not sure if they put any load on Remote MBeanServer. I want to ...
0
votes
1answer
659 views

JBoss Threads - JMX vs Java Visual VM - reporting different results - Why?

When i use Java VisualVM to monitor my JBoss Application. It shows Live Threads as: 155 Daemon Threads as: 135 When i use JMX Web Console of JBoss. It shows Current Busy Threads as: 40 Current ...
1
vote
0answers
206 views

How to approach performance benchmarking of large Java application with JMX?

I'm going to performance benchmark a large Java application. What is the best approach to do it? It is POJO-based application that consists online part with UI and WebService layer, but the most of ...
2
votes
2answers
2k views

How to configure Hibernate statistics in Spring 3.0 application

How do we configure such that we obtain Hibernate statistics through JMX in Spring MVC based web applications. Is there any better way of tracking Hibernate performance.
0
votes
1answer
333 views

Can JConsole be embedded in a Java application?

can JConsole be embedded in a Java application please? My issue is just similar to mensioned in JavaCoreAPIs list but it is posted in 2007. Has anyone been able to embed the JConsole in a java ...
7
votes
6answers
4k views

measure CPU usage of the JVM : java code

Is there a way to measure CPU usage of the JVM (once a java application is started) cross platform (windows + unix + mac)? I have used Jconsole but what I need is a java code that does this, and not a ...
3
votes
2answers
1k views

Does enabling JMX agent have a performance overhead?

I would like to have a possibility to use jconsole in production, but am a bit concerned about performance. Is it ok to leave JMX agent running (via -Dcom.sun.management.jmxremote) or will it have a ...
18
votes
3answers
4k views

Have you used Perf4J to collect and analyze performance metrics in Java app? [closed]

Did you use Perf4J in your Java application to collect and analyze performance stats? What was the typical pattern (using log files, utilities, UI, JMX, etc.)? Did you use annotations and ...
20
votes
5answers
4k views

What do you monitor with JMX in your production java application?

This question is not about how JMX works or what JMX does. This question is about applications of JMX in standard application server environment in production. It is not for specific server either. ...
0
votes
1answer
51 views

Any open source implementations of WS-DM working with JMX?

WS-DM is a web services equivalent of JMX. I am looking for an open source implementation...
9
votes
5answers
607 views

What are the characteristics of a well-designed JMX MBean

What are some of the best practices in designing a JMX MBean? Any examples of ones you feel are especially useful?
4
votes
2answers
2k views

Java real-time service monitoring framework

Got to create some kind of "counters" for online service monitoring - i.e. Foo_Request_Total, Foo_Request_DB_error, Foo_Request_Timedout, Bar_Request_Total,... Also, some kind of alarm has to be ...
1
vote
2answers
735 views

JMX client that can persist gathered information

We've added performance measures to our application and are exposing them using JMX. Now we would like to gather and store performance data for analysis, in files or in a database. Does anyone know ...
10
votes
5answers
6k views

Is a good idea to enable jmx (lambda probe) on a production server?

We are experiencing some slowdowns on our web-app deployed on a Tomcat 5.5.17 running on a Sun VM 1.5.0_06-b05 and our hosting company doesn't gives enough data to find the problem. We are ...
13
votes
3answers
18k views

Measuring Java execution time, memory usage and cpu load for a code segment

For a particular segment of Java code, I'd like to measure: execution time (most likely thread execution time) memory usage CPU load (specifically attributable to the code segment) I'm a relative ...