Gatling是否提供了比较以前运行的测试的方法

时间:2014-08-29 19:31:40

标签: gatling

我一直在运行Gatling测试,结果文件夹中有很多报告。 例如,我有一个报告,每秒200个请求,一个报告每秒400个请求。

是否有相互比较报告?

2 个答案:

答案 0 :(得分:2)

目前只有Jenkins plugin

我们计划将其作为商业报价提供。

答案 1 :(得分:1)

加特林本身提供了称为Gatling Frontline的企业版,它确实支持趋势和历史记录运行。

另一种可能性是使用simulation.log并使用nuxeo gatling-report实用程序来处理它们,如下所示:

# check https://maven-eu.nuxeo.org/nexus/#nexus-search;quick~gatling-report for latest version, or build from source
wget 'https://maven-eu.nuxeo.org/nexus/service/local/repositories/public-releases/content/org/nuxeo/tools/gatling-report/4.0/gatling-report-4.0-capsule-fat.jar'
# do not create outputReportDirectory !
java -jar gatling-report-4.0-capsule-fat.jar results/complexscenario-20200618125705159/simulation.log results/complexscenario-20200617130307094/simulation.log -o outputReportDirectory

如果您打算在Maven构建过程中生成趋势,则可以查看DennisRippinger gatling-reporter maven plugin,它可以加密前面提到的项目。