Group not including pause time in a cumulated response time

I already using the group binding the two end points to get the cumulatedResponseTime of all components and it is not working
Group does not include pause time

.group(“T02_Contact_ImportProcessingTime “) {
exec(actionBuilder = http(” T01_ContactImporter”)
.post("/import-service/import/list")
.header(“x-engage-authorization”, “Bearer “+”${C_Token}”)
.body(StringBody("""${payload}""")).asJson
// .body(ElFileBody(stage_BodiesFilePath + “/contactPayload.json”)).asJson
.check(status.is(201),regex(""_id":"(. ?)",").saveAs(“listId”)))
.pause(t_paceTime)
.tryMax(3) {
pause(t_paceTime)
.doWhile(session => session(“Found”).as[Int] < 1) {
exec(
http(“Polling”)
.post("/rest/v1/filters")
.header(“authorization”, “Token “+”${C_Token}”)
.body(ElFileBody(stage_BodiesFilePath + “/filtersID.json”)).asJson
//.body(StringBody("""{“Chips”: [{“Key”: “list_ids”, “Value”: “${listId}”, “Category”: “ContactFields”, “Type”: 1, “Entity”: “Contact”, “DisplayName”: “Contacts1”} ], “Scope”: 3, “Entity”: “Contact”, “PageNumber”: 1, “PageSize”: 25, “Search”: “”}""")).asJson
.check(status.is(200),regex("“Found”:(.
?),").saveAs(“Found”))
)
.pause(t_paceTime)
}
}
}

1 Like