1

I have some web services to test on Jmeter. I added a listener Summary Report and using JMeter in NON-GUI mode. Here is the file I am getting after configuring the summary report through JMeter.

enter image description here

Here you can see "Check for Update" is written 5 times, that means thread count was 5. I want to group these 5 entries just like in actual summary report and all the other values should be average of this.

UBIK LOAD PACK
  • 33,980
  • 5
  • 71
  • 116
asma
  • 2,795
  • 13
  • 60
  • 87

2 Answers2

0

You can add a Summary Report listener to get each HTTP sampler execution value per grouped by the HTTP Sampler name.

Stephen Kennedy
  • 20,585
  • 22
  • 95
  • 108
Refael
  • 1,252
  • 9
  • 10
0

You can do the following to achieve your desired output:

  1. Launch the JMeter application (GUI Mode) and open the script you used (.jmx file) in non-gui mode.
  2. Add Summary Report Listener, if not present. enter image description here
  3. Load the summary report file using the browse button. enter image description here

If you want to include the median and the 90th percentile in your report, you can use the Aggregate Report Listener.

Stephen Kennedy
  • 20,585
  • 22
  • 95
  • 108
Kenneth P.
  • 53
  • 4