JMeter: New XSL stylesheet for JMeter command line results report

JMeter has built-in ant integration, which allows us to run JMeter from command line. The result of running from command line is a JTL output file. This file is actually an XML file, and can be converted to an HTML file for better readability using an XSL stylesheet. HTML files converted using the stylesheet provided here will look similar to

Fig. 1.  An example HTML file converted from a JTL file in IE9.

Installation:

  1. Edit extras/build.xml in the JMeter distribution, locate
    
    
    
    
    
    

    and add as much information as you want, such as

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    so that what you see in the JMeter GUI will be shown in the HTML file. The property names were found in bin/jmeter.properties.

  2. Locate in extras/build.xml again for
    
      
        
      
    

    Change the style attribute to look like

    
      
        
      
    
  3. Download jmeter-results-shanhe-me.xsl by following the links at the bottom of the page, and save the file to extras/jmeter-results-shanhe-me.xsl.
  4. From the Command Prompt, change the current working directory to the extras folder, e.g., "cd C:\jakarta-jmeter-2.4\extras", and execute "ant". This will run Test.jmx and get Test.html.

    Fig. 2.  Execute ant from the Command Prompt.

  5. You can also specify the path and the file name of the jmx file, e.g., you can run "ant -Dtest=Test -Dtestpath=C:\jakarta-jmeter-2.4\extras" to execute the same Test.jmx in the extras folder.

    Fig. 3.  Execute ant with the path and the file name specified from the Command Prompt.

The output HTML file is compatible with Ie8+/Opera/Firefox/Safari/Chrome.

  • Download jmeter.results.shanhe.me.xsl.

你可能感兴趣的:(jmeter)