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,