Tagged Questions
0
votes
0answers
328 views
Visual VM Remote connection
I have a remote centos machine and have enable jstatd as you can see below.
netstat -nap | grep jstatd
tcp 0 0 :::1099 :::* LISTEN ...
1
vote
2answers
559 views
Why doesn't jvisualvm see my Play Framework app?
I'm trying to use jvisualvm to peer into a Play Framework app.
Environment: Windows 7 bit, Java 7 64 bit.
Step:
1) Added -Dcom.sun.management.jmxremote to _JAVA_OPTIONS enviornment variable.
Play ...
3
votes
1answer
7k views
How to find the default JMX port number?
I am running a Java application on Java 6 VM on a remote Windows XP, on which I can run jvisualvm.exe to connect to the running application automatically.
Now I need to connect that application from ...
2
votes
2answers
298 views
Avoid ClassNotFoundException in JMX call via JVisualVM due to custom exception class
Our application exposes some methods via JMX, which we invoke using JVisualVM.
This works well normally, but sometimes a method call will abort with an exception inside the application. In that case, ...
1
vote
1answer
86 views
What is the use of configuring management.properties in profiling remote JVM
It is required to configure management.properties in 'jre_home\lib\management' to enable remote monitoring. But even after configuring the required properties below
...
3
votes
2answers
3k views
How do I monitor Tomcat6 with JVisualvm in Ubuntu Linux?
I'm trying to set up JVisualVm to monitor a Tomcat 6 instance (running on Ubuntu Server 10.04 LTS). I've seen other questions, but none of them directly answer my problem. I try to connect to Tomcat ...
5
votes
2answers
567 views
jvisualvm - JMX reconnection
Is there any way to reconnect disconnected JMX connection in jvisualvm? When monitored JMX enabled application restarts I have to restart jvisualvm to reconnect it. Am I missing something?
Here are ...
2
votes
1answer
787 views
JMX issue with JBoss 4.2.0 (EAP)?
I am having some issues getting remote JMX working under JBoss 4.2.0, EAP version. I am having some Java OOM errors in my application, and am attempting to set this up specifically to run VisualVM ...
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 ...
5
votes
1answer
381 views
How does JConsole decide what order to use JMX keys to render a tree?
When viewing JMX beans in JConsole it renders all the beans under a given domain part as a hierarchy. (JVisualVM has the same behaviour with the JConsole MBeans plugin.)
I realise that JMX object ...
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 ...
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 ...