Reputation: 13
I have below JMeter scenario:
Inside a While controller, I placed If controller to check the last sample success status (${JMeterThread.last_sample_ok}). WhileController runs for a specific time and then breaks the loop. My scenario is working fine but when I see the aggregate report I didn't see the Transaction controller name.
Upvotes: 0
Views: 493
Reputation: 1821
The Transaction Controller generates an additional sample when all the elements within the Transaction Controller are executed.
In your case, the nested elements were not executed yet. You will see the Transaction controller sample when all the elements within the transaction controller are executed.
It was not possible to reproduce the issue with similar configuration.
Upvotes: 0