VisualVM Do not show ANY methods called processor performance profiling

I am running an application to create the Java 1.6_21 SDK. It was created in Eclipse, and I use the VistualVM eclipse plugin to run VisualVM when the application starts.

When I go to the "Profile" tab and click on "CPU Profiling", it shows only those THREADS that work, but does not show any METHOD calls. Pretty personally, no. I was looking for a whole bunch of things, but nothing like it fit. ANYONE saw this problem? Is there a solution?

Environment: 32-bit Windows XP "Classic" Eclipse SDK 3.7.0 VisualVM from SDK 1.6_21

It makes no sense to me. I can get information about the memory heap, but zero member information.

Any help is greatly appreciated.

+8
java visualvm
source share
3 answers

You tried defining classes for profiling.

check the box "Settings" in the upper right corner of the window and install the packages that you want to profile.

+11
source share

See Profiling with VisualVM, Part 1 and Profiling with VisualVM, Part 2 , for how to set CPU parameters.

+2
source share

I noticed that Visual VM reports incorrect counts of method labels (I believe that they mean the number of times the method was called).

0
source share

All Articles