1
votes

I have a JMeter test plan with multiple thread groups. When I execute my test plan and generate a dashboard report, it shows all the sampler with their statistics. I want to segregate the report to show results for each thread group separately in the same report.

Example: A thread group : steps of thread group : Statistics

1

1 Answers

5
votes
  1. You can use __threadGroupName() function as a prefix for your Samplers

    enter image description here

    it will result in the following dashboard report:

    enter image description here

  2. If you don't want individual samplers but cumulative summary of all samplers in the Thread Group - put all the Samplers under Transaction Controllers,tick Generate parent sampler box and set jmeter.save.saveservice.subresults property to false

    enter image description here

    it will result in the following report:

    enter image description here