user7982813
user7982813

Reputation: 151

Transaction Controller is Not Showing Overall response time of all Samples

I have multiple samples under Transaction Controller but in aggregate report it is showing individual samples instead of showing overall response time of transaction controller. In my Script for Transaction Controller i have already checked in Generate Parent Sample and also I have updated the meter.properties file to

summariser.ignore_transaction_controller_sample_result=false

but still seeing same issue I am using Jmeter5.0 ,does anyone know why it is not showing results on Transaction controller level It is only happening when I am running test in non-gui modern GUI mode it is working fine

Upvotes: 1

Views: 2126

Answers (2)

Dmitri T
Dmitri T

Reputation: 168122

This is default functionality since JMeter 5.0 introduced in ticket 62470.

There is a possibility to revert JMeter to previous behaviour, you will need to add the next line to user.properties file:

jmeter.save.saveservice.subresults=false

JMeter restart will be required to pick the property up

More information:

Upvotes: 2

M Navneet Krishna
M Navneet Krishna

Reputation: 694

Uncheck "Save Sub Results" as part of the Aggregate Report Listener configuration and then re-run the test.

enter image description here

This should provide the CSV without individual sampler results.

Additionally, even in GUI mode, if this option is not unchecked, the CSV being created will have individual sample results. However, the Aggregate Report UI will show only Transaction level details.

This supposed issue is seen in JMeter 5.0 since "Save Sub Results" option is now available in CSV as well unlike previous versions which had only the option in XML.

Upvotes: 1

Related Questions