1
votes

Actually I am create CI using jmeter (.jmx file) into Jenkins. for reporting I using Performance Plugin (follow this link). Is there anything report plugin for jmeter in Jenkins instead of Performance Plugin? actually I want to have API report on Jenkins. Performance Plugin seems not good enough for API test reporting. it does not show the response message, etc.

1

1 Answers

3
votes

Performance plugin is not very suitable for functional testing, its main functions are:

  • building performance trend graphs for regression purposes
  • conditionally fail the build if metrics start getting worse

Jenkins is very flexible and performance plugin is only one of post-build actions, you can publish anything to the build artifacts, for instance you can generate HTML Reporting Dashboard after test execution or use XSL Transformation of the .jtl result file to get single page HTML report using XSL stylesheets from "extras" folder, i.e. http://svn.apache.org/repos/asf/jmeter/trunk/extras/jmeter-results-detail-report_21.xsl

See Running a JMeter Test via Jenkins Pipeline - A Tutorial for example configuration