Vilas
Vilas

Reputation: 87

Report generation in Jmeter

How can I generate a consolidated summary report for multiple threads under a single test plan in JMeter. We are able to fetch report individually for each thread group.Is there any chance that we can get consolidated report for all thread groups under single test plan.

Upvotes: 0

Views: 592

Answers (1)

Dmitri T
Dmitri T

Reputation: 168157

If you are getting the report from i.e. Summary Report listener just remove all Summary Report listeners from all Thread Groups and add one at the same level as the Thread Groups

JMeter Listener for All Thread Groups

The concept is known as Scoping Rules, i.e.:

  • If you add a listener as a child of a Sampler - it will be applied to this sampler only
  • If you add a listener as a child of a Thread Group - it will be applied to all Samplers in the Thread Groups
  • If you add a listener as a child of the Test Plan - it will be applied to all samplers in the Test Plan

Also be aware that starting from JMeter 3.0 there is a possibility to generate HTML Reporting Dashboard

Upvotes: 1

Related Questions