There are a few ways to get reports from load testing results using the [[k6 (tool)|k6]] CLI: - HTML dashboards - Output to CSV, and then graph using a data visualization tool - Output to Influx DB and use Telegraf to send it to Grafana - Prometheus Remote Write output (very soon) You can use the HTML dashboard generators: https://github.com/benc-uk/k6-reporter and https://github.com/szboynono/k6-html-reporter . I also demonstrate how this works here: https://www.youtube.com/watch?v=Zln_TWOuoho&t=1533 You can output k6 results to a CSV file using the command `k6 run test.js -o csv=results.csv` . This page in our documentation shows how to send results from k6 to an instance of Grafana/Prometheus: https://k6.io/docs/results-visualization/grafana-cloud/ And we are also working on a Prometheus Remote Write integration that will be released very soon!