Reputation: 15
In non GUI mode, is there a way to generate both .jtl file and .csv file under below circumstance:
.jtl would be required to store and analyse response data in case of failure which demands
jmeter.save.saveservice.output_format=xml
At the same time .csv is required to generate HTML report which demands
jmeter.save.saveservice.output_format=csv
It seems that either of these only can be generated at a time. Is there a way around? I want to be able to store response data as well as generate reports. Any help appreciated.
Upvotes: 0
Views: 996
Reputation: 168147
As of JMeter 5.3 it's possible to use only CSV results file format for HTML reporting dashboard generation.
If you need to store response data in case of failure just add a separate Listener to your test plan like Simple Data Writer or Flexible File Writer and choose what and where to store:
Upvotes: 1