vote up 2 vote down star

Hi all,

I was wondering if anyone has found any plugins that attach a profiler to a JVM to automatically monitor performance during a unit or integration test. I would like to correlate performance to a particular page view and then drill down into all the methods invoked, memory used, run time, etc.

Does Yourkit or JBoss Profiler support these options or is it even possible?

Thanks, Walter

flag

67% accept rate

3 Answers

vote up 0 vote down

You might want to first try using the right performance instrumentation and measurement approach before worrying about an actual maven plug-in.

http://williamlouth.wordpress.com/2009/01/08/junit-performance-testing-instrumentation-and-assertion/

link|flag
Good catch - I will look into that. I'll have to see what I can do with my integration tests running Selenium / HtmlUnit. – Walter White Oct 1 at 19:51
vote up 1 vote down

This blog by velo from Sonatype describes how to profile your tests using Maven.

It configures the surefire plugin to point to the yourkit installation, then configure the surefire plugin to use the yourkit agent dll:

<profile>
  <!-- http://www.yourkit.com/docs/80/help/agent.jsp -->
  <id>yourkit-profile</id> 
  <properties>
    <yourkit.home>C:\Arquivos de programas\YourKit Java Profiler 8.0.13</yourkit.home>
  </properties>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <argLine>-agentpath:"${yourkit.home}\bin\win32\yjpagent.dll"</argLine>
        </configuration>
      </plugin>
    </plugins>
  </build>
</profile>

Later in the same blog it describes how to configure the build to use the API to take memory snapshots. That should allow you to do the correlation you described.

link|flag
Hi Rich, Thanks for your reply - I'm running OpenSolaris and see they have a release for that, looks like I would just need to point to the .so instead of the .dll? – Walter White Sep 18 at 13:37
I guess so (no pun intended), the main thing is that the agent for the system is available for surefire execution. If the .so is the equivalent on Solaris then that would make sense. – Rich Seller Sep 18 at 13:55
vote up 2 vote down

A quick search on Google allowed me to find this: maven-yourkit-plugin . Never tried it myself though.

link|flag
It's worth noting from the plugin site: It's very immature and unstable. I'll start soon to rewrite a bit this plugin. – Rich Seller Sep 18 at 7:18
To me, immature and unstable doesn't mean it's worth nothing. Actually, without testing, I can't say what it means but I guess it's far from perfect. – Pascal Thivent Sep 18 at 9:27
@Pascal I dd not say "worth nothing", I said worth noting, as in please be aware that. FWIW I upvoted your answer – Rich Seller Sep 18 at 12:30
@Rich My bad, I apologize for the misunderstanding. – Pascal Thivent Sep 18 at 12:52
apology accepted. I misread people calling me a count all the time. – Rich Seller Sep 18 at 13:00

Your Answer

Get an OpenID
or

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