Hi,
The only thing I can suggest here is to wait. We have plans to
fix Performance Publisher plugin in the nearest future, but it
takes time (we're working on JMeter 3.2 all plugins
compatibility).
| Andrey Pohilko Chief Scientist P: +7 (909) 631-21-69 |
--
You received this message because you are subscribed to the Google Groups "codename-taurus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to codename-taur...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/codename-taurus/e3936af6-f415-4ff9-8744-4b18fed71d1d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi,
There was Performance Plugin release 2.1 which added support for
Taurus summary files. Worth looking at for you.
| Andrey Pohilko Chief Scientist P: +7 (909) 631-21-69 |
node {
stage("Checkout scripts from git") {
git url:'someurl'
}
stage("Run JMeter command") {
jmeter --version
jmeter -n -J jmeter.save.saveservice.output_format=xml -t sample.jmx -l jmeter.jtl -j jmeter.log
"
'''
}
stage("Process JTL logs") {
println "Test processing logs"
/*
* Use the Performance Plugin to process the .jtl log file.
*/
performanceReport compareBuildPrevious: true,
configType: 'ART',
errorFailedThreshold: 100,
errorUnstableResponseTimeThreshold: '',
errorUnstableThreshold: 100,
failBuildIfNoResultFile: false,
modeOfThreshold: false,
modePerformancePerTestCase: true,
modeThroughput: true,
nthBuildNumber: 0,
parsers: [[$class: 'JMeterParser', glob: '**/*.jtl']],
relativeFailedThresholdNegative: 0,
relativeFailedThresholdPositive: 0,
relativeUnstableThresholdNegative: 0,
relativeUnstableThresholdPositive: 0
}
stage("Archive log files") {
archiveArtifacts '**/*.jtl **/*.log'
}
stage("Cleanup") {
// Wipe the workspace so we are building completely clean
deleteDir()
}
}
node {
stage("Checkout scripts from git") {
git url:'someurl'
}
stage("Run JMeter command") {
sh '''