Hi,
I new in gatling and I have a problem with the max response time. I run a script with gatling and jmeter.
I had this script
class Tierra extends Simulation{
object Tierra{
val r = scala.util.Random
val geoCodeIpAddress = scenario("By Ip Address")
.feed(ipAddress)
.exec(http("By Ip Address")
.get("/v1.3/geocode")
.queryParam( """ip_address""", "${ip_address}")
.queryParam( """client_id""", clientId)
.queryParam("""loadRequests""", loadRequests)
)
}
val ipAddress = csv("ipaddress.csv").random
val httpConf = http
.baseURL("http://xxxx.xxx")
.connectionHeader("keep-alive")
.extraInfoExtractor(extraInfo => List(extraInfo.request))
setUp(
Tierra.geoCodeIpAddress.inject(constantUsersPerSec(5000) over (2 seconds))
).protocols(httpConf)
}
I saw the following numbers: