'Jmeter: How can we combine all same get request result into one to get avargae result on summary report?

I have run jmter test from terminal with 30 threads and got csv result. I want to get data in format of summary report as in jmeter GUI.

I upload the csv file in summary report but it display same request multiple time as it was run with 30 threads. Is it possible to combine all same data into one? So, that we can analyze the average result of all request.

I am gettting following result currenlty: enter image description here

And I am trying to get result like this:

I want to have one same request: https://osdotme.dev/karma-program/ instead of duplicate data.

enter image description here



Solution 1:[1]

It sounds like a bug in JMeter, it worth raising it via JMeter Bugzilla.

These additional results are due to redirects or downloading embedded resources or both

If you need this data right away you can consider the following approaches:

  1. Generate HTML Reporting Dashboard out of the .csv file

    ./jmeter -g /Users/apple/report/jmeter/browse1.csv -o /Users/apple/report/jmeter/dashboard
    

The dashboard will have the summary table without these subresults

  1. Use JMeter Plugins Command Line Tool to generate the CSV form of the Summary Report in command-line without having to open JMeter GUI, add Listener, etc

    ./JMeterPluginsCMD.sh--generate-csv summary.csv --input-jtl /Users/apple/report/jmeter/browse1.csv --plugin-type SynthesisReport
    

    in this case summary.csv will be in the format you're looking for.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Dmitri T