0
votes
1answer
12 views

Polling MBeans Attributes with out refresh

This is what I did: Step 1: Exposed MBeans Attributes: Step 2 Polling Options What else do I have to? Still I don't see attribute values getting updated without clicking on refresh.
0
votes
0answers
350 views

Jboss AS 7.1.1-Final Remote JMX call fails with status “WAITING”

I am trying to connect to remote Jboss 7.1.1-Final from Visual VM over JMX protocol supported as "remoting-jmx". Jboss is running in standalone mode with port 9999 opened for remote access. I can ...
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, ...
2
votes
1answer
924 views

Remote monitoring a Tomcat 7 server using VisualVM and SSH

Sorry if this is a repeat of a question asked previously, but I have tried out the solutions provided here and elsewhere and none of them seem to work for me. Scenario: I need to profile a ...
1
vote
2answers
431 views

Monitor memory usage per thread

How can I monitor an application's memory usage per thread? I tried VisualVM but it says that memory sampling is not available. What else can I try? (Note I am using IBM JDK)
0
votes
2answers
194 views

JFrame in remote between JDK 5 (Server) and 6 (Client - VisualVM)

So I have a little trouble on the opening of a JFrame. I searched extensively on the net, but I really can not find a solution ... I explained the situation: I need to develop an application that ...
0
votes
4answers
916 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 ...
1
vote
1answer
3k views

Debugging VisualVM remote connection

I am running Tomcat 6 on a Linux server in Amazon's cloud. I am trying to connect to it with VisualVM from my Mac at my office. I have allowed opened up all TCP ports between my desktop and the ...
0
votes
2answers
2k views

A Simple JMX Monitoring Tool that persists data too

I use Java Visual VM to monitor my App Server (JBoss) via JMX. The problem is that i can see only real-time data. I want to capture the information permanently, so that i can see history anytime. ...
0
votes
1answer
663 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
1answer
272 views

difference between jstats and jmx in visualvm

I am using visualvm to monitor my production server which has both jmx and jstatd. I tried both protocol in visual vm but seems very identical, is there any difference using jmx or jstatd to monitor ...
1
vote
2answers
500 views

Avoid needing to set jmxremote ports (to use VisualVM remotely)?

We share a remote Linux box for developing various Java apps, and we use VisualVM over ssh to profile the apps as described here. Is there any way to enable JMX/profiling on our Java processes without ...
1
vote
1answer
1k views

Viewing MBeans through jstatd

I am trying to monitor all Java processes running on a server via jstatd. I've got it set up enough that I can connect with VisualVM and see all running processes. Most displays work fine, however ...
0
votes
2answers
2k views

VisualVM over Putty SSH-tunnel

I'm trying to profile remote java app, actually it is a gameserver. It works normally on my local machine (windows XP x64 with JDK1.7.0_02 x64), but behaves very wierd on the production server (CentOS ...
0
votes
2answers
666 views

How do I avoid this NullPointerException when connecting remotely to a JBoss AS via JMX from VisualVM?

Problem: When I connect via VisualVM and supply the correct credentials, the program seems to wait a bit (either processing or waiting for the connection), then errors out with this an exception. ...
5
votes
2answers
3k views

VisualVM through firewalls - RMI troubleshooting

Sorry for this question which must have been asked many times, but I can't succeed in resolving my problem. I've read a lot of blogs, sites, forums, .... and didn't find any solution in my case. Case ...
1
vote
2answers
2k views

How to connect to an mBeanServer in another local process?

If you set the "com.sun.management.jmxremote" system property when you start a JVM, you can run jconsole or visualvm and connect to that local mBeanServer. I want to do the same thing they are doing ...
11
votes
1answer
992 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 ...
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 ...
0
votes
1answer
651 views

VisualVM can't connect to any PID on Snow Leopard?

No matter what I start up, Visual VM just gives me "Unknown Application" and "Not supported for this JVM" on my Mac. I've tried JBoss, Jetty, Eclipse - just to see if it would be able to identify / ...
2
votes
4answers
4k views

MBean Simple Graph Monitor

I have some JMX Beans that expose performance information in my application. I would like to have some facility to plot an attribute of an MBean in a graph for monitoring (a la Windows Perf Mon). I ...
2
votes
1answer
3k views

How do I start VisualVM with the JMXWS WS Connector (JSR-262)?

I have an Java application running in JBoss in which I have enabled JMX remote monitoring. This allows me to connect with tools such as jconsole and visualvm to monitor memory usage, cpu utilization, ...