No results for

Powered byAlgolia

Export results

After a test finishes, you can export the test-result data in various formats:

  • PDF report: to share the performance results with managers and executives.
  • CSV format: to analyze the test result metrics deeper on your own.

For other methods to analyze your test results, check out the k6 Cloud integrations with APM tools and the Grafana Data Source Plugin.

Generate a PDF Report

⭐️ The PDF report is available on annual Pro and Enterprise plans.

The PDF report is an executive summary of the test results' most relevant metrics and performance data. To get an idea of the report looks, you can download an example here.

Performance Test Result - PDF Summary Report

Open the editor

To generate a PDF summary, do the following:

  1. Navigate to the test result you want to generate a summary of.
  2. Use the three-dots icon to open test results menu in the top right.
  3. Select the Generate PDF summary option.

This takes you to an editor where you can customize and download the summary.

Add or remove metrics

To limit the data included in the report, use the Add/Remove Metrics dropdown at the top of the page. The editor comes with a variety of predefined metrics that can be included.

Adding or Removing Metrics - PDF Summary Report

Summarize the Results

You have a few ways to edit and format the PDF.

Edit text

Text Editing - PDF Summary Report

Each section of the summary has text from a predefined template. To edit this text:

  1. Select the edit icon or the text itself.
  2. Write your new text.
  3. Select outside the text field.

When you are satisfied with your changes, select outside the text editor. If you want to cancel and revert your changes, select the cancel icon next to the editor, or use the ESC key on your keyboard.

Formatting

Text Editing - PDF Summary Report

To apply formatting to your text, select the text you want to format and choose the appropriate formatting from the popup.

You can also use the following keyboard shortcuts to apply format text:

ShortcutFormat
Ctrl / + BBold
Ctrl / + IItalic
Ctrl / + UUnderline

Generating the PDF

Once you've finished editing the summary, select the Generate PDF button in the top right of the editor. This opens a progress dialog. After a few moments, the browser will prompt you to download the PDF summary report.

Do not refresh or navigate away from the page while the PDF is being generated. How much time it takes to generate depends on the amount of data that needs to be included. If your test has much data, such as many load zones, it may take longer.

Export as CSV

To export the test result as CSV, follow these steps:

  1. Select the test result.
  2. Select the three-dots icon in the top right, and select Export Data.

The data will be exported as a ZIP file that contains a number of CSV files.

Each metric is exported to a separate file. The export also contains a metrics.csv file with the list of exported metrics.

A typical k6 HTTP test will have the following files:

File nameMetricColumns
metrics.csvIndex of exported metricsmetric,type,origin
metric_checks.csvcheckstime,metric,scenario,group,check,load_zone,tags,nz_count,count
metric_data_received.csvdata_receivedtime,metric,scenario,group,load_zone,tags,count
metric_data_sent.csvdata_senttime,metric,scenario,group,load_zone,tags,count
metric_group_duration.csvgroup_durationtime,metric,scenario,group,load_zone,tags,count,min,mean,median,p95,p99,max,stdev
metric_http_reqs.csvhttp_reqstime,metric,group,scenario,name,method,status,expected_response,load_zone,tags,count
metric_http_req_duration.csvhttp_req_durationtime,metric,group,scenario,name,method,status,expected_response,load_zone,tags,count,min,mean,median,p95,p99,max,stdev
metric_iteration_duration.csviteration_durationtime,metric,scenario,group,load_zone,tags,count,min,mean,median,p95,p99,max,stdev
metric_iterations.csviterationstime,metric,scenario,group,load_zone,tags,count
metric_load_generator_ cpu_percent.csvload_generator_cpu_percenttime,metric,scenario,group,load_zone,tags,count,min,mean,max,last
metric_load_generator_ file_handles.csvload_generator_file_handlestime,metric,scenario,group,load_zone,tags,count,min,mean,max,last
metric_load_generator_ memory_used_percent.csvload_generator_memory_used_percenttime,metric,scenario,group,load_zone,tags,count,min,mean,max,last
metric_vus.csvvustime,metric,scenario,group,load_zone,tags,count,min,mean,max,last
metric_vus_max.csvvus_maxtime,metric,scenario,group,load_zone,tags,count,min,mean,max,last
metric_myCustomCounter.csvUser-defined myCustomCounter Countertime,metric,scenario,group,load_zone,tags,count
metric_myCustomGauge.csvUser-defined myCustomGauge Gaugetime,metric,scenario,group,load_zone,tags,count,min,mean,max,last
metric_myCustomRate.csvUser-defined myCustomRate Ratetime,metric,scenario,group,load_zone,tags,nz_count,count
metric_myCustomTrend.csvUser-defined myCustomTrend Trendtime,metric,scenario,group,load_zone,tags,count,min,mean,median,p95,p99,max,stdev

The following table is a reference for the columns in the CSV data, with examples, data types, and descriptions.

ColumnExampleType (unit)Description
time2019-03-25 11:12:48.927949+00:00datetime (UTC)The ISO-8601 timestamp when this data point was captured (when the HTTP request was made).
metrichttp_req_durationstringThe metric name that this data point represents.
group"my group"stringThe group name group() from where this request was made.
scenariodefaultstringThe name of the scenario that this metric was collected in.
urlhttp://test.k6.io/style.cssstringThe URL requested.
methodGETstringThe HTTP method of the request that this data point represents.
status200numberThe HTTP response status code of the request that this data point represents.
count1.0numberNumber of samples that this data point represents (if > 1 response_time is an aggregate value).
load_zoneamazon:us:ashburnstringThe load zone where the request(s) was made from.
tags{"staticAsset":"true"}stringJSON formatted list of {"name": "value"} tags as specified for the request in the script.
min1.008016number (ms)The minimum response time for samples collected within the time bucket.
mean3.008016number (ms)The mean response time for samples collected within the time bucket.
median5.468016number (ms)The median response time for samples collected within the time bucket.
p9510.10816number (ms)The 95th percentile response time for samples collected within the time bucket.
p9914.08016number (ms)The 99th percentile response time for samples collected within the time bucket.
max15.08016number (ms)The maximum response time for samples collected within the time bucket.
stdev0.075112number (ms)The standard deviation time for samples collected within the time bucket.