加特林报告描述定制

Gatling report description customization

Gatling 报告中唯一的全局自定义文本是模拟 class 名称。它出现在报告的右上角。

如何在不更改模拟名称的情况下放置一些自定义消息(简短)class?

据我所知,有 3 种方法可以将一些自定义消息添加到 Gatling 报告

  1. 运行 description param inside gatling.conf 文件,它显示在顶部报告的一部分(报告时间和持续时间旁边)

    gatling {
      core {
        runDescription = "Test description of report"
      }
    }  
    

  1. 场景名称 - 测试代码中的场景参数,显示在其中一份报告中(模拟过程中的活跃用户)

    scenario("Scenario name")
      .exec(http("Action name").get("http://localhost"))
    

  1. Action name - 测试代码中的 http 参数,显示在 Statistic table

    scenario("Scenario name")
      .exec(http("Action name").get("http://localhost"))