Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to ask how I can profile REMOTELY a java application. For debugging I can say which port the JVM must listen etc since the machine I'm trying to access is behind an ssh gateway so I manually create an SSH tunnel but I've been googling about the same thing but when profiling and I couldn't seem to find. Basically I'm looking for the equivalent of this command:

java -agentlib:jdwp=transport=dt_socket,server=y,address=8000 -jar /bla/bla 

but for profiling so that I can remotely attach a profiler.

share|improve this question

3 Answers

up vote 1 down vote accepted

Disclaimer: My company develops JProfiler

With JProfiler, the VM parameter is like this:

-agentpath:/path/to/libjprofilerti.so=port=8849

"/path/to/libjprofilerti.so" is the path to the native agent library, on Linux x86, for a 32-bit JVM it would be [JProfiler installation directory]/bin/linux-x86/libjprofilerti.so. With the port parameter, you can tell the agent to listen on a specific port. You can set this to the port of your SSH tunnel.

You can easily generate this VM parameter by invoking Session->Integration Wizards->New Remote Integration in JProfiler's main menu:

enter image description here

On your local machine, you create a new session of type "Attach to profiled JVM" and choose the local port of your SSH tunnel (10022 in the screen shot):

enter image description here

share|improve this answer

Perhaps VisualVM version 1.3.2, with all the plugins installed, will help you out.

share|improve this answer
I tried visualvm and then it says hostname of remote machine - but then again the remote hostname is actually is a tuple of my local ip:port which redirect through the SSH tunnel to the remote machine and since on the remote machine I have never said on which port to listen this won't work – LordDoskias Sep 27 '11 at 15:04
It'd be worth exploring to figure out how to make VisualVM work for your case. – duffymo Sep 27 '11 at 15:15

You might want to take a look at AppDynamics

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.