VisualVM calibration step hangs with Windows 10

Situation:

I installed VisualVM 1.3.8 in my Windows 10 Anniversary Edition (and did not use the one that came with JDK 8).

I would like to use this to create a Java (Play) application.

What's happening:

When you start profiling the CPU, it is first asked what I need to calibrate, and when this happens, it freezes at the stage.

Hanging display

What I tried:

I tried this on MacOS 8 and it followed the OK calibration steps.

I edited the etc / visualvm.conf file to disable the pipline d3d function.

visualvm_default_options = "- J-Dsun.java2d.d3d = false -J-client -J-Xms24m -J-Xmx256m -J-XX: + IgnoreUnrecognizedVMOptions -J-Dnetbeans.accept_license_class = com.sun.tools.visualupm. .AcceptLicense -J-Dsun.jvmstat.perdata.syncWaitMs = 10000 -J-Dsun.java2d.noddraw = true "

Goal:

Get the calibration process.

+6
source share
1 answer

I found a mailing list entry describing the same issue.

The solution is to start VisualVM from the command line using:

jvisualvm.exe -J-Dorg.netbeans.profiler.separateConsole=true 
+8
source

All Articles