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 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:
- JMeter Properties Reference
- Apache JMeter Properties Customization Guide
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:
- Declare its name in AbstractSummaryConsumer#createResultTitles function
- Implement the desired behaviour in AbstractSummaryConsumer.createDataResult function
- Add the new column in dashboard.js.fmkr
- Rebuild JMeter