with asLongAs - can i get the total time it took in the gatling report?

Hi

I have something like this in my script

 .asLongAs(session => session("status").as[String] != "done"){
  exec(http("5 loop until done")
    .get("/isitdone")
    .check(jsonPath("$.status").saveAs("status"))
  )
}


In the gatling report, it doesn't give me a total time that asLongAs took. Is there a way to get that listed? 

Thanks

Wrap in a group

Sweet! thank you. Did not know about that feature.