0
votes

I have some web services to test on Jmeter. Added a Summary Report listener using JMeter in NON-GUI mode. Here is the file I am getting after configuring the summary report through JMeter. Note: Have multiple if controllers, each if controller has Transaction controller, could you please find below digram

Threadgroup
Transaction controller 1
Transaction controller 2
If controller 1
-- > Transaction controller 3
If controller 2
--- > Transaction controller 4
If controller 3
--- > Transaction controller 5
If controller 4
-- > Transaction controller 6
If controller 5
--- > Transaction controller 7
If controller 6
--- > Transaction controller 8

Here you can see "Navigate to URL" is written 4 times, that means thread count was 4.

I want to group these 4 entries just like in the actual summary report and all the other values should be average of this. similarly I want to group of below samplers

/ubo/Reference/mapinfo/DE
/ubo/Reference/entityinfo/US
Login
---
etc
Summary Report

Test Plan

1
@okesh Try this URL, It might help your requirement. - Rajashekar

1 Answers

0
votes

You're looking into .jtl results file which has one entry per sample result with timestamp, response time, response message, etc.

If you're looking for the Summary Report listener textual representation you either need to:

  • Open the .jtl file in JMeter GUI using Summary Report (or other listener of your choice) by using "Browse" button:

    enter image description here

    and the Listener with interpret/group sample results, calculate average response times, etc. the output can be stored using "Save Table Data" button

  • The same can be achieved using JMeter Plugins Command Line tool, if you install it and Synthesis Report you will be able to generate the table out of the .jtl results file using the following command:

     JMeterPluginsCMD --generate-csv SummaryReport.csv --input-jtl /your/test/results.jtl --plugin-type SynthesisReport