Typically in a java application we do specify the following JVM arguments like:
-XX:+HeapDumpOnOutOfMemoryError
-XX:HeapDumpPath=./java_pid<pid>.hprof
-XX:OnOutOfMemoryError="< cmd args >;< cmd args >
-XX:+UseGCOverheadLimit
Is it possible to ...
I am trying to get a nested method level instrumentation (like time spend in executing the method etc.) and i would like to specify the highest level method in the call stack. I would like to see the instrumentation data starting with the top most me...