Based on the doc link k6-learn/Modules/III-k6-Intermediate/06-Organizing-code-in-k6-by-transaction_groups-and-tags.md at main · grafana/k6-learn · GitHub, we added two groups inorder to get the individual test metrics for the two metrics. However in the terminal, we could see the consolidated data only. Hence, we executed with the below command to import the result to csv file
k6 run test.js -o csv=results.csv
In csv file, the test metrics are represented for the two groups separately. However it is not listing all the metrics. We want to have min, max, avg, p(90), p(95) separately for the two groups.
How can it be done? Can someone help on this?