When exporting the raw data from a load test, a .zip is downloaded containing multiple csv files.
The data inside them is already aggregated. For example, these are the columns of the file metric_http_req_duration.csv
:
"time","metric","group","scenario","name","method","status","expected_response","load_zone","tags","count","min","mean","median","p95","p99","max","stdev"
How can I get the raw data ? I searched in the documentation but the only guide for exporting I found is Export test results. I mean the data in the same form as k6 outputs it for local runs when passed --out csv=<some_file>
Additionally, downloading the test results manually is quite tedious, I’m thinking of using the cloud API to download them, but I wonder if there isn’t easier way to get them.
Your help is greatly appreciated!