如何通过fiddler捕获gatling.io https / wss调用?

How to capture gatling.io https / wss calls through fiddler?

我 运行 gatling.io 对我的服务器进行负载测试,但我希望能够查看调用以便我可以调试部分脚本。我知道我可以让它将所有日志写入控制台,但通过 fiddler 查看会更好。

我搜索了几个小时才找到解决方案。这是迄今为止最简单的。只需修改 gatling.io 的 scala 脚本的 http 配置对象即可使用 fiddler 的代理。

就像这样:

val httpConf = http
  .proxy(
    Proxy("127.0.0.1", 8888)
      .httpsPort(8888)
  )