Venkatesh
Venkatesh

Reputation: 13

JMeter: Transaction Controller label name is not displaying in aggregate report

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.

Jmx file

Aggregate Report

Upvotes: 0

Views: 493

Answers (1)

Janesh Kodikara
Janesh Kodikara

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.

enter image description here

It was not possible to reproduce the issue with similar configuration. enter image description here

Upvotes: 0

Related Questions