In my application, a new JVM is launched when ever a new resource is created. I am able to profile the newly launched JVM by connecting it in yourkit.
Right now I am able to connect to JVM only after it is ready and after that I am able to profile it but i want to profile the JVM methods while is is coming up i.e profile the methods calls of the JVM while it is initializing.
Is there any way i can achieve this?
Reason for this is, some methods which are only invoked during initialization are causing some problem and those can't be profiled once the JVM is created and is ready.
Thanks