Grouping response times

Hi,

I have a stress test scenario divided into several parts, for instance:

object Part1 {
val part1 = …
}

object Part2 {
val part2 = …
}

object Part3 {
val part3 = …
}

val scn = scenario(“Test”).exec(Part1.part1 , Part2.part2 ,Part3.part3 )

Is there any way to group the results of each part ? I don’t really need all the graphs and the metrics, I just need to sum the execution times of all the requests in each part.

Thanks,

Hi There,

I think you can try something like this. Please check the docs for further info.

val scn = scenario(“Test”)
.group(“group1”) {
exec(Part1.part1)
.exec(Part2.part2)
}
.group(“group2” {
exec(Part3.part3)
}