I am using jenkins pipeline script to run jmeter script and am using performance plugin to create performanceReport as below
performanceReport parsers: [[$class: 'JMeterParser', glob: "**/*.jtl"]], modeOfThreshold: true,relativeFailedThresholdNegative: 1.2, relativeFailedThresholdPositive: 1.89, relativeUnstableThresholdNegative: 1.8, relativeUnstableThresholdPositive: 1.5
In the below performance trend though errors are increased the build is green so I'm trying to configure Jenkins performance plugin to fail job if the percentage of errors increase by X %
or response time decrease/increase by X %
with respect to previous build(s) . can someone please help me with it?