Response Time Problem

When having this type of request:

val scn = scenario(“ConnectingToChatServer”)
.exec(session => session.set(“currentUser”, “SampleUser” + userCount.getAndIncrement))
//in the folowing step the first presence count is received and all the other users are notified of the new user
.exec(ws(“OpenConnection”).open("/uname=${currentUser}")
.check(wsAwait.within(30).until(1).regex("""{.“messageType”:“presenceCountIncrement”,“username”:"${currentUser}".}"""))
)

Is there a way to include the time passed until matching the particular message in the response time? It seems that the response time used is the time taken to open the connection only.

Thank you.

Jamie Tabone