You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The PDF report is an executive summary of the test result's most relevant metrics and performance data. Read more to this [documentation](/cloud/analyzing-results/result-export#generate-pdf-report)
13
+
10
14
## Export data
11
15
12
-
Starts a data export. For more information on the structure of the export, please refer to this [documentation](/cloud/analyzing-results/result-export)
16
+
Starts a data export. For more information on the structure of the export, please refer to this [documentation](/cloud/analyzing-results/result-export#export-as-csv)
13
17
14
18
## Share test results
15
19
Collapse file: src/data/markdown/docs/03 cloud/02 Analyzing Results/11 Result Export.md
Copy file name to clipboardExpand all lines: src/data/markdown/docs/03 cloud/02 Analyzing Results/11 Result Export.md
+20-6Lines changed: 20 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,25 @@
1
1
---
2
2
title: 'Result Export'
3
-
excerpt: 'Structure for the CSV export for cloud results'
3
+
excerpt: 'Exporting k6 Cloud test results. CSV format and PDF reports'
4
4
---
5
5
6
-
Test result data can be exported after a test has finished and data processing complete. To do so, use the [test results menu](/cloud/analyzing-results/test-results-menu) in the top right of a test result and select `Export Data`. The data will be exported as a `.tar.gz` file with a `.csv` contained inside.
6
+
Test result data can be exported after a test has finished and data processing complete in various formats:
7
+
-[PDF report](#generate-pdf-report): to share the performance results with managers and executives.
8
+
-[CSV format](#export-as-csv): to analyze the test result metrics deeper on your own.
7
9
8
-
## Structure of the CSV data
10
+
If you want to know other methods to analyze your test results, check out the k6 Cloud integrations with [APM tools](/cloud/integrations/apm) and the [Grafana Data Source Plugin](/cloud/integrations/grafana-plugin).
11
+
12
+
## Generate PDF report
13
+
14
+
To generate a PDF report from a test result, visit the test result, click the options menu - triple-dot button **⫶** in the top right - and select `Generate PDF summary`. After a few seconds, the browser will prompt you to download the PDF summary report.
15
+
16
+
The PDF report is an executive summary of the test result's most relevant metrics and performance data. A complete PDF example can be found [here](https://f.hubspotusercontent10.net/hubfs/1681264/Executive%20Summary%20-%20Scenarios.pdf).
17
+
18
+

19
+
20
+
## Export as CSV
21
+
22
+
To export the test result as CSV, visit the test result, click the options menu - triple-dot button **⫶** in the top right - and select `Export Data`. The data will be exported as a `.tar.gz` file with a `.csv` contained inside.
9
23
10
24
The CSV data has the following columns of data:
11
25
@@ -30,8 +44,8 @@ Here's example data, units (where necessary) and description of each field prese
30
44
|`status`| 200 | number | The HTTP response status code of the request that this data point represents. |
31
45
|`count`| 1.0 | number | Number of samples that this data point represents (if > 1 `response_time` is an aggregate value). |
32
46
|`load_zone`| amazon:us:ashburn | string | The load zone where the request(s) was made from. |
33
-
|`tags`| staticAsset=true | string | Pipe (` |`) separated list of `name=value` tags as specified for the request in the script. |
47
+
|`tags`| staticAsset=true | string | Pipe separated list of `name=value` tags as specified for the request in the script. |
34
48
35
-
### Future
36
49
37
-
The exported CSV file currently only contains data from the primary HTTP response time metric (`http_req_duration`). In the future we'll expand the export feature with more HTTP data, WebSocket data, Checks data, Thresholds data as well as Custom metrics data.
50
+
> **Note**
51
+
> The exported CSV file currently only contains data from the primary HTTP response time metric (`http_req_duration`). In the future we'll expand the export feature with more HTTP data, WebSocket data, Checks data, Thresholds data as well as Custom metrics data.
0 commit comments