0
votes

I have multiple jmx files which are committed to gitpipeline for CI. End users are not fine with reports showing OK/KO and requested us to change the same and also asked us to add few details like total time take for the execution, description of the test and environment/hostname used.

Solutions am looking for -

  1. how to change OK/KO when the JMX is executed using maven. What properties do i need to change/add in order to achieve this for maven?
  2. Is there a way to customize the report to have additional details like "Total Duration", "Environment", "Description of Test" under Test and Report information section or anywhere else?
  3. If it is not achievable using the default report available, are there any other JMeter report plugin's for maven?
1

1 Answers

0
votes
  1. As of JMeter 5.2.1 the KO and OK labels are not controllable by any JMeter properties, you will have to go into /bin/report-template/content/js/dashboard.js.fmkr and change the labels there
  2. Similarly for extra columns, you will need to add them manually in the aforementioned file.

Get familiarized with Apache FreeMarker template engine, this is what JMeter is using under the hood in order to produce the dashboard.

Alternatively you can consider a 3rd-party results analysis solution like BM.Sense which reports test duration out of the box and provides possibility to add comments to the execution.