how do you profile java source with intellij idea editor?

JavaIntellij IdeaProfiler

Java Problem Overview


I know that Netbeans has something of an "integrated" profiler, for instance you can run unit tests and use it to analyze and find what is slowing them down, where bottlenecks are. Is it possible to profile code within IntelliJ IDEA editor?

Java Solutions


Solution 1 - Java

You can try the free VisualVM profiler integration via a plug-in.

Solution 2 - Java

As pointed by Stephen Murby "the problem where your tests finish before VisualVM has launched".

Yes, this VisualVMLauncher plug-in does not put your test case on hold until VisualVM has started. You may also need time to manually change profiling settings specific for the test. Solution is simple, your test case has to stop and wait until you manually tells it to continue. There are few ways of doing it:

  1. put System.in.read(); as first line of test case and as VisualVM is ready press enter at console.

    System.in.read();

  2. If test case runner does not provide you with console, put wait until some magic file is created.

  3. you can always play easy with sleep()

    sleep(5 seconds);

This work around is not much of convenience but works for me as need to profile occasionally. The root cause of issue is in plug-in architecture of both IDEA and VisualVM are not thought to be collaborative. See discussion with plug-in author Hope that helps.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionrogerdpackView Question on Stackoverflow
Solution 1 - JavaCrazyCoderView Answer on Stackoverflow
Solution 2 - Javasmile-onView Answer on Stackoverflow