0
votes

I am using Jmeter version-5. After the load test is complete am using APDEX to generate reports. And inside this JMETER APDEX report, i am seeing samples, ok, Error etc. So, how can i add OK column additionally in APDEX report of JMETER v5?

1

1 Answers

0
votes

If you want to rename Apdex column to OK it's very easy, just add the next line to user.properties file:

reportgenerator_summary_apdex_apdex=OK

and next time you will generate the dashboard, the Apdex column will be renamed to OK

More information:


If you want to add a brand new column OK which will be true or false depending on the frustration threshold you will need to:

  1. Declare its name in AbstractSummaryConsumer#createResultTitles function
  2. Implement the desired behaviour in AbstractSummaryConsumer.createDataResult function
  3. Add the new column in dashboard.js.fmkr
  4. Rebuild JMeter