I\'m trying to use the Eclipse VisualVM launcher. It seems pretty nice, except that it seems to spawn an instance if VisualVM too late to do any profiling of my application. My
I know that problem. The only poor man's solution I always came up with is:
It just takes a bit time for VisualVM to inject the profiling agent into your VM and I am pretty sure that it allows only remote profiling.
As an alternative you could use YourKit, it can profile your application from the very start. This way the profiling agent is injected on VM startup:
java -agentpath:c:\yourkit\yjpagent.dll FooClass
I am curious why VisualVM does not offer this option, since its technically possible. Anyway I think the debug trick is a good solution from within Eclipse, unless you are also interested in the class loading etc.