Hi,
In our scenario group is added for the executions. It looks group total is wrongly calculated. The image is attached and highlighted the group total.
Please kindly let me know how to fix this. And also is there a setting to convert milliseconds values to seconds values for percentiles.
Regards,
Umeshwaran.V
sbrevet
2
Hi,
What do you call wrongly calculated?
Things do not add up and this is perfectly fine, depending on your group definition.
For instance, if you have conditional branches in your group:
group("withCondition") {
doIfOrElse(_ => Random.nextInt(10) > 5) {
exec(http("if true").get("..."))
} {
exec(http("if false").get("..."))
}
}
You will have values for "if true"
and "if false"
but the group won’t be the sum.
On other hands, pauses are not shown as requests.
Another concern will be the difference between averages and percentiles.
The metrics are not identical:
- group: duration of the whole group
- request: duration of one single request
Your group may be smaller, bigger,
If you continue to be convinced that are issues with calculation, please, be more specific and provide the injection logs.
Cheers!