Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've created a simple 1 file java application that iterates through a loop, calls some functions, allocates some memory, adds some numbers, etc. I run that application via eclipse's Run As->Java Application.

The running application shows up in Java VisualVM under Local.

I double click on that application and go to the Profiler tab.

The default settings are:

Start profiling from classes: my.main.package.**

Do not profile classes: java.*, javax.*, sun.*, sunw.*, com.sun.*

I click on CPU. The CPU and Memory buttons gray out. Nothing happens.

The Status says profiling inactive.

When my application terminates the Status says application terminated.

What am I doing wrong here? Are there some settings I need to tweak? Do I need to set a VM flag when I launch my application?

share|improve this question
Would you consider accepting my answer if it helped you / may help others with the same issue? – Mikaveli Mar 6 '12 at 17:18
@Mikaveli I would consider it. However, as I described below, it actually didn't work. I have still not been able to use the -J-D... option to point jvisualvm at something launched from eclipse. I appreciate your insight and attempt to help, but sadly it did not work. Also note that this question has been closed. – Luke Mar 6 '12 at 17:24
The notes about the hsperfdata is where JVisualVM (and other apps) get the process info from - learning that will help you and others debug any issues in the future. If the -J option didn't work, this can only be because you haven't pointed it to the actual java.io.tmdir (Eclipse overrides the standard location). That's the documented way to pass JVM arguments to JVisualVM. The reason it works now could easily be related to the bug I mentioned (case-sensitivty of the folder location) which 'cures itself' depending on the case of the username you log on with. Worth 15 rep? :) – Mikaveli Mar 7 '12 at 8:43
1  
I disagree with this being closed, since I had the exact same issue! I tried the suggestions here without luck, and wanted to add my own Answer: you might be better off installing the Eclipse plugin, at visualvm.java.net/eclipse-launcher.html . It worked for me. – Kevin Pauli Jun 28 '12 at 21:12
@KevinPauli I asked for it to be closed because I could no longer reproduce the issue. I haven't had the issue since either. I'm not entirely sure what the situation was that caused the issue. – Luke Jun 29 '12 at 12:05
show 1 more comment

1 Answer

up vote 3 down vote accepted

I'd guess the issue relates to the application being started from within Eclipse, this is because JVisualVM expects to find data in the java.io.tmpdir directory (usually C:\Users\[your username]\AppData\Local\Temp\hsperfdata_[your username] on a Windows system).

I assume rather than in the normal location where JPS, JVisualVM etc. expects it, Eclipse puts the data in it's own temp folder?

If so, try invoking JVisualVM using jvisualvm -J-Djava.io.tmpdir=[Eclipse's temp directory] to explicitly tell it where that data is.

If you can't find the hsperfdata_$USER folder, try just running your application outside Eclipse in the usual command line Java way.

Also note that there was a bug affecting the temp folder (case sensitivity) introduced around 1.6.0_23, so maybe you'd benefit by updating to a more recent Java 6 (or 7) build?

share|improve this answer
I appreciate your suggestion. Adding the -J-D option to (j)visualvm only gave me an error that it could not find the local java process. However, I am now currently unable to reproduce my original issue. The profiler seems to be working just fine for me now... – Luke Feb 21 '12 at 18:11
You must use the visualvm executable (in the \bin folder). The -J option means pass to the JVM - the rest of the syntax is exactly as you'd normally add arguments to your JVM. – Mikaveli Feb 22 '12 at 8:33
I think you mean jvisualvm but yes, that's what I did. And when it launches it displays an error dialog popup that says Local Java applications cannot be detected. It refers me to the VisualVM Troubleshooting Guide for more information and steps to fix the problem. – Luke Feb 22 '12 at 12:52
1  
It's probably not the correct path to the temp dir. When you start your application, if you also include -Djava.io.tmpdir=[Same place] when you start Java, the two folders must match and JVisualVM must be able to see the contents. – Mikaveli Feb 27 '12 at 12:06

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.