Hi, I’m having a system with workflow like this:
send an API request for a file
-> System acknowledges, sends out response
- -> System then forms file in backend
- - -> Browser then calls refresh API repeatedly until status of this file changes to COMPLETE
In total, there will be 3 APIs to be called, the 3rd APIs will be called repeatedly after 5 seconds to refresh. What I’m thinking is if Gatling support a way to log the total response time of the scenario, something like this:
scenario("name")
.exec(
logReponseTime(
API#1,
API#2,
doWhile(...){
API#3
}
)
)
thanks for reading