Response time for each request

Hi

I am using the 5 requests, as like this

class getSignalEvents extends Simulation {

val service_feeder = csv(“XXX.csv”).random

val scn1= scenario(“XXX”)
.pause(1)
.exec(http(“XXX”)
.get("""${XXX}"""))

val scn2= scenario(“XXX”)
.pause(1)
.exec(http(“XXX”)
.get("""${XXX}"""))



setUp(
sc1.inject(atOnceUsers(1)).protocols(httpProtocol)
sc2.inject(atOnceUsers(1)).protocols(httpProtocol)
)
}

JSON file i am getting for the global_stats.json like only

i need json result for every request

how can i get this

Not available atm.

Hello Stephane,

Is it possible to get information per request response time? Even the values in log file would suffice (i don’t need in a visual form) I see your reply from last year. Did you guys added this feature recently?

Regards
Sabbir

The simulation.log should give you the most granular of metrics.

ls -lt | find . -name “simulation.log”