Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在运行 gatling.io 对我的服务器进行负载测试,但我希望能够查看调用,以便调试部分脚本。我知道我可以让它将所有日志写入控制台,但通过提琴手查看更好。
我搜索了几个小时,直到找到解决方案。这是迄今为止最简单的。只需修改 gatling.io 的 scala 脚本的 http 配置对象以使用 fiddler 的代理。
像这样:
val httpConf = http .proxy( Proxy("127.0.0.1", 8888) .httpsPort(8888) )