Gatling报告描述定制

时间:2016-04-06 17:47:09

标签: gatling

Gatling报告中唯一的全球自定义文本是Simulation类名称。它出现在报告的右上角。

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

1 个答案:

答案 0 :(得分:3)

据我所知,有三种方法可以将一些自定义消息发送给Gatling报告

    gatling.conf 文件中
  1. 运行说明参数,它显示在报告的顶部(报告时间和持续时间旁边)

    gatling {
      core {
        runDescription = "Test description of report"
      }
    }  
    
  2. enter image description here

    1. 方案名称 - 测试代码中的方案参数,显示在其中一个报告上(模拟中的活跃用户)

      scenario("Scenario name")
        .exec(http("Action name").get("http://localhost"))
      
    2. enter image description here

      1. 操作名称 - 测试代码中的http参数,显示在统计信息

        scenario("Scenario name")
          .exec(http("Action name").get("http://localhost"))
        
      2. enter image description here