CPU / Memory tab not showing when profiling with Java Visual VM

When I try to profile my Java application using Java VisualVM, the Threads, CPU, and Memory Memory tabs do not appear. I do not have any JVM arguments for my program other than "-Djava.library.path = lib / native", is there a specific argument that I need to use to enable profiling?

Additional Information:

  • Built with Netbeans
  • Uses LWJGL
+4
source share
1 answer

Just to have this removed from the Unanswered list:

The problem was solved by running the same version of VisualVM as the JVM (in this case 64-bit). Successful profiling may be version specific.

+7
source

Source: https://habr.com/ru/post/1386521/


All Articles