Reputation: 803
I have created jenkins pipeline project where running jmeter test. here i am not able to find option /attribute which can be passed/added to perfReport command with which i can comparr current run with specific past build number.
current perfreport options i do see are
perfReport filterRegex: '', relativeFailedThresholdNegative: 1.2, relativeFailedThresholdPositive: 1.89, relativeUnstableThresholdNegative: 1.8, relativeUnstableThresholdPositive: 1.5, sourceDataFiles: 'results.csv'
Upvotes: 0
Views: 459
Reputation: 168217
You need to add the following stanza to your pipeline:
modeEvaluation: true, nthBuildNumber: 1
change this 1
to the build number you would like compare the current result to.
More information:
Upvotes: 1