Galting with wireshark or fiddler

Hello All,

I have a requirement to capture downstream API response.
For that I need to use fiddler or wireshark.
Could anyone please tell me that how to configure fiddler.wireshark with galting.

Thanks,
Kartik

Hello Kartik,
I haven’t configured Wireshark, but have done with Fiddler

  • launch Fiddler, for ex: in port 8888
  • in the gatling script, for the httpProtocol config, add the proxy param as below:

val httpProtocol = http
.proxy(Proxy(“localhost”,8888))

  • run the script, Fiddler should capture the traffic

Thanks
Sujin Sam