0

I am using jvisualvm in order to profile my application.

My application base package is com.bignibou

I have added the following settings in jvisualvm's "Profile only packages" field:

com.bignibou.*, org.springframework.*

I noticed that only the org.springframework.* packages and sub-packages show in the "cpu samples" for the Tomcat process...

Can anyone please help me understand why no information is shown about my application packages?

balteo
  • 23,602
  • 63
  • 219
  • 412
  • Note: for some reason, the chosen scenario did not show any data for my application base package. However when I chose another scenario, it did show a hotspot method based on my application package in the cpu samples. – balteo May 09 '14 at 08:22

1 Answers1

0

You need to set "Start Profiling from Classes" to "com.bignibou.**" and uncheck "Profile new Runnables". You can set "Profile only packages" back to its default. More details about profiling settings can be found in Profiling With VisualVM, Part 1 and Profiling With VisualVM, Part 2.

Tomas Hurka
  • 6,723
  • 29
  • 38