2

I used CPU View to check the performace. can someone suggest what does head 'direct calls to methods of filtered classes' signify? I cannot upload screenshot.

it just like this: "91.5% -60,324ms -14inv.direct calls to methods of filtered classes"

Any help will be appreciated.

Jonathan
  • 403
  • 2
  • 7
  • 16

1 Answers1

4

This node contains threads that only make calls into unprofiled classes - starting from the top level run() method of a thread.

To see all method calls, switch to "Sampling" in the profiling settings and deactivate all filters.

enter image description here

Ingo Kegel
  • 46,523
  • 10
  • 71
  • 102
  • Kegel,Thank you for your answer. I have disabled all fillters for sampling ,and start Jprofiler again, but it also display "91.5% -6,324ms -14inv.direct calls to methods of filtered classes" on the first note. any suggestions? – Jonathan Sep 06 '12 at 03:01
  • You have not switched to sampling. In sampling it would not display "14 inv.", because sampling cannot record invocation counts. – Ingo Kegel Sep 06 '12 at 07:33