Java Management eXtensions is a standard Java API that enables the instrumentation and monitoring of a running Java program.
14
votes
11answers
44k views
How do you enable JMX in Websphere?
I would like to use JConsole to monitor my Websphere application, but I am not sure how to enable JMX.
72
votes
17answers
74k views
Best tools to monitor Tomcat [closed]
I'm searching free tools for monitor tomcat (traffic, memory usage, threads, requests, CPU, logs,...). I'm currently using lambdaprobe on Tomcat 5.5.x, but it seems that is no more developed (or not? ...
27
votes
7answers
23k views
Calling JMX MBean method from a shell script
Are there any libraries that would allow me to call a JMX MBean method from a shell script. We expose some operations/admin commands through JMX, and we could have our admins use JConsole, or ...
23
votes
9answers
32k views
Connecting remote tomcat JMX instance using jConsole
I am trying to connect to a remote tomcat JMX instance using jConsole. But can't connect successfully. Any Idea?
I included the following option in remote tomcat catalina.sh:
JAVA_OPTS="$JAVA_OPTS ...
13
votes
6answers
40k views
Does Java 6 open a default port for JMX remote connections?
My specific question has to do with JMX as used in JDK 1.6: if I am running a Java process using JRE 1.6 with
com.sun.management.jmxremote
in the command line, does Java pick a default port for ...
33
votes
6answers
22k views
Has anyone ever got a remote JMX JConsole to work?
It seems that I've never got this to work in the past. Currently, I KNOW it doesn't work.
But we start up our Java process:
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=6002
...
13
votes
3answers
16k views
How to activate JMX on my JVM for access with jconsole?
How to activate JMX on a JVM for access with jconsole?
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 ...
10
votes
5answers
17k views
Unable to use JConsole with Tomcat running as windows service
I am running tomcat 6.0.18 as a windows service. In the service applet the jvm is configured default, i.e. it is using jvm.dll of the JRE.
I am trying to monitor this application with JConsole but ...
3
votes
2answers
2k views
Is it a possible to invalidate an individual session in JBoss through JMX?
We are tracking down some memory issues in our application and we have visibility into the size of our sessions where the problem seems to be. It is only affecting certain sessions where they seem to ...
4
votes
1answer
2k views
Tomcat 6, JMX and the dynamic port problem
after reading and trying a lot around, I have to ask if anyone has a solution for my problem.
I am trying to set up some Tomcats (V6) behind a firewall. This is no big deal - but I want to monitor ...
4
votes
2answers
2k views
Query for system (not JVM) uptime in Java
Is there a OS-neutral method of querying for system (not JVM - I am aware of RuntimeMXBean.getUptime()) uptime in JavaSE 6 ?
Thanks
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 ...
15
votes
3answers
17k views
JBoss AS 7 JMX Console
I spent some time checking out JBoss AS7 today. I am impressed with what I have seen so far but I noticed that good ol' JMX-Console no longer exist.
Does anyone know why it was left out?
I ...
5
votes
2answers
7k views
CPU and profiling not supported for remote jvisualvm session
When monitoring a remote app (using jstatd) I can neither profile nor monitor CPU consumption. Heap monitoring (provided I do not use G1) works. jvisualvm provides the message "Not supported for this ...
4
votes
5answers
4k views
Efficient way of getting thread CPU time using JMX
I'm currently getting the total thread CPU time using JMX in the following manner:
private long calculateTotalThreadCpuTime(ThreadMXBean thread) {
long totalTime = 0l;
for (ThreadInfo ...
6
votes
2answers
4k views
Web based JMX console for Tomcat?
Are there any web based JMX consoles available for Tomcat that basically provide the same functionality as Tomcat's JMX Proxy Servlet but in a more user friendly manner?
I understand that I could ...
5
votes
1answer
6k views
Connection details & timeouts in a java web service client
I have to implement a webservice client to a given WSDL file.
I used the SDK's 'wsimport' tool to create Java classes from the WSDL as well as a class that wrap's the webservice's only method ...
3
votes
1answer
305 views
Is it possible with JMX to register or show the MBeans form different VMs in one central MBean server?
I'm looking for a solution to register the MBeans or the whole MBean Servers itself from different Java VMs in a central MBean Server which should also run in a separate VM. The goal is to have only ...
10
votes
2answers
2k views
JConsole command line credentials
Is it possible to pass credentials for monitored resource to JConsole while starting it via command line. I've got the command like that right now.
${jdk.home}/bin/jconsole.exe
...
5
votes
3answers
6k views
How do I access memory usage programmatically via JMX?
I'm looking for sample Java JMX code to access the values of JMX attributes from another VM.
With JConsole, I have no problem looking at java.lang/Memory/Attributes/HeapMemory
How would I get the ...
1
vote
1answer
823 views
How to stop message processing before undeploying?
Given:
A JMS message queue.
A timer service which puts messages to that queue periodically (from a database).
A JEE6 message-driven bean which reads from the queue.
The timer service and the ...
5
votes
5answers
5k views
Java app performance counters viewed in Perfmon
I have a Java app running on Tomcat, and I would like to monitor counters using Windows Performance Monitor. Is this possible using a JMX adapter for the Java MBeans or by some other means?
14
votes
7answers
2k views
JMX Defined [closed]
I am looking for:
What JMX is.
Where I can find some good JMX
Tutorials.
What JMX can provide to me as a
Java EE programmer.
Anything else I should be aware
of.
15
votes
6answers
25k views
Remote JMX connection
I'm trying to open a JMX connection to java application running on a remote machine.
The application JVM is configured with the following options:
com.sun.management.jmxremote
...
9
votes
1answer
7k views
Can visualvm connect automatically via JMX to a remote process?
I have a Java process running on a remote machine, and the process sets up some mbeans. I also have jstatd running on that machine as the same user as the Java process. (The mbeans can be set up ...
4
votes
6answers
4k views
Analyze Tomcat Heap in detail on a production System
Having analyzed a light-load web application running in tomcat, using JMX Console, it turns out the "PS Old Gen" is growing slowly but constant. It starts with 200MB and grows around 80MB/Hour.
CPU ...
3
votes
2answers
4k views
Programatically get heap info using jmx with java 5
I am aware of using jconsole to attach to a java process to get memory information. Specifically I'm after getting information on the various memory pools programatically so I can tie it to a ...
2
votes
2answers
2k views
How should I monitor a web application on tomcat using JMX?
I would like to monitor web applications running under tomcat using JMX.
I don't want to just use the built in JMX implementation of Tomcat, I want to implement an mbean for the actual Web ...
1
vote
1answer
257 views
Unable to see metrics captured with spring metrics annotations
How can I do the equivalent of:
@Override
public void init(final ServletConfig config) throws ServletException {
super.init(config);
CsvReporter.enable(new File("/tmp/measurements"), 1, ...
11
votes
1answer
990 views
How do I give a name to a VisualVM “<Unknown Application>”?
JDK 1.6 comes bundled with a handy tool called VisualVM that lets you inspect and interact with running Java processes. One feature is that it auto-detects running JVMs on the local machine. Most ...
4
votes
4answers
16k views
How to enable JMX on Weblogic 10.x
I have an application that is JMX enabled. It has its own JMX Agent and some MBeans. When I launch the application in WebLogic, I am able to connect to the JMX agent via the RMI url and perform the ...
3
votes
2answers
4k views
How to check datasource in JBoss?
I have a datasource, how to check if its ok? maybe somehow using jmx-console?
3
votes
5answers
13k views
Getting Active Session counts with JMX (Java Management Extensions) API
I'm trying to use JMX API to get active session counts for a web application.
Is it possible to use JMX API to get this kind of information?
If yes, how reliable would it be?
Any example code on ...
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.
1
vote
1answer
365 views
How to enable JMXMP in Tomcat?
I've downloaded the JMXMP extensions and installed them in Tomcat's lib directory. Now, how can I make it use them, i.e. let Tomcat accept JMXMP connections?
Oracle's examples show how to do it with ...
1
vote
2answers
1k views
Simple tool to monitor a Tomcat server using JMX
I am a computer science student currently doing an internship. My boss has asked me to write a simple tool to monitor a Tomcat server. I am just starting this project so I'm basically just playing ...
1
vote
2answers
257 views
Java daemon deployment
I have a console Java application, which runs all the time on a remote server (nohup java -jar myapp.jar &).
Frequently (every other day) I need to replace the JAR file by a newer one (whenever I ...
0
votes
4answers
912 views
Where to download JMXMP?
I want to profile a Java application with VisualVM, remotely via JMX. Because it's a NAT'ted and firewalled EC2 instance, I can't use the default RMI approach and need to use the optional JMXMP ...
0
votes
1answer
675 views
Use JMX (MBean) to log WebLogic status
I know we can use MBean to get WebLogic's status. For example, use JDBCDataSourceRuntimeMBean (http://download.oracle.com/docs/cd/E15523_01/apirefs.1111/e13951/core/index.html) to get the JDBC status. ...
5
votes
2answers
440 views
How to detect if a Java System property has changed?
I would like to know when a System property is changed. I have an application, in an application server, that somehow is changing a system property (System.setProperty() I think). I was taking a look ...
5
votes
2answers
2k views
difference between JMX and RMI
What is purpose JMX is used for? I have been scanning through some of the tutorials on JMX, all they do is register some Mbeans and invoke those Mbeans from jconsole. If that is the purpose it is used ...
3
votes
2answers
1k views
Is it possible to programmatically close a Java process through JMX
I'm currently writing an app to monitor another Java process and take specific actions when certain targets are hit. For example, if a thread deadlocks for a certain time, kill the thread, if the ...
2
votes
1answer
358 views
Why are some methods on the JConsole disabled
I can see that some methods on the jconsole are disabled.
Given below is the screenshot for com.sun.management.ThreadMXBean
The javadocs for these MBean methods do not specify anything about the ...
2
votes
1answer
538 views
JBoss JMX twiddle Runtime not registered
I have a problem with the twiddle script on a Solaris 10 server.
I have to read some properties e.g jboss.system and others.
All properties depending on the jboss server are fine, but when I try
to ...
1
vote
1answer
268 views
How to get details of MessageReceivers of JMS Queue(HornetQ deployed in JBoss AS6)?
I need to get details of Message Receivers which are connected to JMS Queue,
I am using HornetQ which is deployed in JBoss AS6.
Is there such operation/API already defined in JMX/JMS?
Any other ...
0
votes
2answers
390 views
How to change value of com.arjuna.ats.jbossatx.jta.TransactionManagerService TransactionTimeout at the run-time?
We have JBoss [EAP] 4.3.0.GA_CP01 environment and I need to modify the
TransactionTimeout
property of
com.arjuna.ats.jbossatx.jta.TransactionManagerService
but whenever i try to change the ...
7
votes
1answer
1k views
Is it necessary to unregister an MBean from the Platform MBean Server?
I've begun playing with MBeans for exposing some information about an app. Pretty much the totality of HOWTOs / Tutorials / Blog posts / Samples online teach you how to implement an MBean and register ...
4
votes
3answers
1k views
jmx/jstatd access to remote machine through an ssh tunnel
I'd like to use visualvm app through an ssh tunnel (to an EC2 machine) using jmx OR jstatd. How do I do this? Here is a list of what has been tried (and failed):
(BTW: if visual vm is not appropriate, ...
3
votes
1answer
703 views
ActiveMQ: Get list of connections through JMX?
how do I get the list of the connections to the OpenWire connector of ActiveMQ?
JConsole is able to list the connections, but I don't see which "view" I can use to get the list:
Example ObjectName ...
