Using JProfiler to profile an application running on Oracle IAS, going into JEE & Probes -> JDBC -> Hot Spots, under the 'Unknown' tree an item called 'Hot spot inv. without CPU recording" shows as using 85% of the applications CPU time, but I can't find anything out about what this 'Hot Spot Inv.' item is.

Edit;

Screenshot

link|improve this question

You got to give more info than that. Probably a screenshot would do (with package names erased if you wish) – KasunBG Aug 31 '11 at 15:08
@KasunBG Added screenshot – sam Sep 1 '11 at 7:54
feedback

1 Answer

up vote 1 down vote accepted

"hot spot inv." stands for "hot spot invocations". This just means how often the hot spot has been called along the selected path.

Back traces are only available when CPU recording is active. The fact that you have some back traces and a large "without CPU recording" node means that you have started CPU recording after JDBC probe recording. To avoid this, start CPU recording before JDBC probe recording.

To learn more about hot spots and back traces, see this help topic.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.