Need to generate response time per transaction .

object GlobalLogin {
val globallogin=exec(http(“GlobalLogin”)

…,
http(“request_2”)
…,
http(“request_3”)
…,
http(“request_4”)
…,
http(“request_5”)
…,
}

object HRDATA {
val hrdata=exec(http(“Hrdata”)

…,
http(“request_2”)
…,
http(“request_3”)
…,
http(“request_4”)
…,
http(“request_5”)
…,
}

object Logout{
val logout=exec(http(“logout”)

…,
http(“request_2”)
…,
http(“request_3”)
…,
http(“request_4”)
…,
http(“request_5”)
…,
}

val scn1 = scenario(“Businessscenario”).repeat(1000){
exec(GlobalLogin.globallogin,HRDATA.hrdata,Logout.logout)}

Here GlobalLogin.globallogin, HRDATA.hrdata,Logout.logout has many request inside it.

Now, gatling will generate response time per request.

We need to know the response time for complete one object( login object or logout object)

Is there any way to do it???

Thanks in advance
Ajith Shetty

Timing groups maybe is your choice.

Cheers,