{iframe:src=http://update.sonarsource.org/plugins/jmeter.html|width=700|height=250|frameborder=0}
Your browser does not support iframes.
{iframe} |
Plugin |
0.1 |
0.2 |
|---|---|---|
Sonar |
2.4+ |
2.4+ |
|
New feature in plugin version 0.2 |
If you want to use JMeter Report Server then:
> java -Dtestconfig.name.jtlpath=/path/to/file.jtl -jar jmeter-report-server.jar |
|
JTL files must be provided as a result of JMeter tests. |
This plugin collects performance tests results from Apache JMeter. Apache JMeter may be used to test performance both on static and dynamic resources (files, Servlets, Perl scripts, Java Objects, Data Bases and Queries, FTP Servers and more). It can be used to simulate a heavy load on a server, network or object to test its strength or to analyze overall performance under different load types. You can use it to test your server/script/object behavior under heavy concurrent load.
If it is the first time you hear from Apache JMeter then you should try it before using this plugin.
The following metrics are included in Sonar:
This is an example of the widget you will see in Sonar:

JMeter installation is very easy. JMeter is developed with Java and it is distributed as a compressed file.
You can download it from http://jakarta.apache.org/jmeter and then run the provided script (bin/jmeter).
You can find a step by step tutorial in JMeter's website: http://jakarta.apache.org/jmeter/usermanual/jmeter_proxy_step_by_step.pdf
It describes how to record a test plan using the JMeter proxy.
You can also take a look at this video tutorial to see how to record a test with JMeter:
SONAR JMeter plugin uses the results datafile generated by JMeter (file with extension .JTL) so remember to configure your test plan to store the results in a single JTL file.
In this video we show you how to set this JTL file:
JMeter Report Server is a server that generates performance reports from JMeter results. SONAR JMeter Plugin uses this server to get the performance metrics from the projects.
It must be installed on the same machine with JMeter tool. The server will read the JTL files to get provide all the data to SONAR.
JTL files must be provided as a result of JMeter tests. JMeter Report Server is just to make JTL files available remotely.
JMeter Report Server needs to know where the JTL files are located. You can set your test configuration when running the server through command line system properties:
java -Dtestconfig.name1.jtlpath=/path/to/file1 -jar jmeter-report-server.jar |
where name is the test configuration that you will use in SONAR JMeter Plugin project settings.
Or you can also set this location by creating a property file "jmeter-report-server.properties" with all your test configurations:
testconfig.name1.jtlpath=/path/to/file1 testconfig.name2.jtlpath=/path/to/file2 ... testconfig.nameM.jtlpath=/path/to/fileN |
This is useful is you have multiple projects in your JMeter environment and you want to manage all your tests with a single JMeter Report Server.
Port and maxConnections are now configurable properties and they can be set as system properties (using -D in the start command) or as normal properties in the jmeter-report-server.properties file as shown below.
# Using default port port=4444 # Unlimited connections maxConnections=0 |
Here you have a test configuration example:
testconfig.iceweb.jtlpath=/home/carlos/jmeter_work/iceweb.jtl |
This configuration will set JTL file "/home/carlos/jmeter_work/iceweb.jtl" to the project "iceweb".
"iceweb" will be the name for your test configuration. SONAR plugin settings will use that name.
Server is package in a single jar with all dependencies, so just download JMeter Report Server and put it wherever you want ![]()
You can start the server with this command:
java -Dtestconfig.name1.jtlpath=/path/to/file1 -jar jmeter-report-server.jar |
NOTE: replace "jmeter-report-server.jar" with the name of the file downloaded and testconfig property with your project name and the path to the JTL file.
This video shows how to configure JMeter plugin in SONAR:
Since 0.2 version, there is a jmeter-report-server embedded inside the sonar plugin, and there is a new configuration option (Local jtl file) where you can set a jtl file path, local to the sonar server. If this option is set, no remote jmeter report server if used, and jmeter test results are taken from the local file.
Now it possible to configure units of time in your global or project settings. You can set seconds, minutes or hours.
Add JMeter widget to your dashboard and next time you run "mvn sonar:sonar" you will retrieve performance metrics from JMeter and SONAR will show them.
Since 0.2 release the plugin can be used together with Maven JMeter Plugin and Cargo to perform the tests and collect performance metrics in just one maven goal:
mvn cargo:start org.apache.jmeter:maven-jmeter-plugin:jmeter sonar:sonar |
You have to configure your project to be able to do that:
<!-- Plugin to launch your JMeter tests in Maven -->
<plugin>
<groupId>org.apache.jmeter</groupId>
<artifactId>maven-jmeter-plugin</artifactId>
<version>1.0-GA</version>
<configuration>
<reportDir>${project.build.directory}/jmeter-reports</reportDir>
</configuration>
</plugin>
<!-- Plugin to start a container and be able to run your webapp and perform your JMeter tests
This example uses Tomcat 7 as the container. -->
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<container>
<containerId>tomcat7x</containerId>
<zipUrlInstaller>
<url>http://archive.apache.org/dist/tomcat/tomcat-7/v7.0.12/bin/apache-cat-7.0.12.zip</url>
</zipUrlInstaller>
</container>
</configuration>
</plugin>
|
To get sonar-jmeter-plugin working in maven side, there must not be any configuration values set in Sonar (all of them must be blank).