Reputation: 443
I have three requests Req1,Req2,Req3 executed at same time. So I have used parallel controller to execute the same.
Is there any way to capture Max response time of any of these requests in JMeter Summary report? Because for reporting User Transaction that contains parallel requests, we need to take highest response time of these requests. I used simplecontroller and placed Req1,Req2,Req3. But it captures Sum of these requests. Looking for some thing which will capture highest response time in JMeter Summary Report
Thanks in advance
Upvotes: 0
Views: 269
Reputation: 168147
Just tick Generate parent sample
box:
This way in the Summary Report listener you will see one SampleResult containing execution time of the longest Sampler under the Parallel Controller:
More information: How to Use the Parallel Controller in JMeter
Upvotes: 0