k6 extension for publishing test-run metrics to Prometheus via Remote Write endpoint.
⚠️ Not to be confused with Prometheus Remote Write client extension which is for load testing Prometheus itself.
🔖 As of k6 v0.42.0, this extension is available within k6 as an experimental module. This means that the extension has entered the process of being fully merged into the core of k6 and does not require a special build with xk6 to utilize this feature.
See the Prometheus remote write guide to utilize this feature.
There are many options for remote-write compatible agents, the official list can be found here. The exact details of how metrics will be processed or stored depends on the underlying agent used.
Key points to know:
- remote write format does not contain explicit definition of any metric types while metadata definition is still in flux and can have different implementation depending on the remote-write compatible agent
- remote read is a separate interface and it is much less defined. For example, remote read may not work without precise queries; see here and here for details
- some remote-write compatible agents may support additional formats for remote write, like JSON, but it is not part of official Prometheus remote write specification and therefore absent here
To build k6 binary with the Prometheus remote write output extension use:
xk6 build --with github.com/grafana/xk6-output-prometheus-remote@latest
Then run new k6 binary with the following command for using the default configuration (e.g. remote write server url set to http://localhost:9090/api/v1/write
):
./k6 run -o xk6-prometheus-rw script.js
Check the documentation for advanced configurations.
This repo includes a docker-compose.yml file that starts Prometheus, Grafana, and a custom build of k6 having the xk6-output-prometheus-remote
extension.
Note: the docker-compose.yml
file has the Native Histogram mapping set as enabled.
This is just a quick setup to show the usage. For a real use case, you will want to deploy outside of docker.
Clone the repo to get started and follow these steps:
-
Start the docker compose environment.
docker-compose up -d
Some users have encountered failures for the k6 build portion. A workaround may be to disable the "Use Docker Compose V2" checkbox in the General section of Docker Desktop settings.
# Output Creating xk6-output-prometheus-remote_grafana_1 ... done Creating xk6-output-prometheus-remote_prometheus_1 ... done Creating xk6-output-prometheus-remote_k6_1 ... done
-
Use the k6 Docker image to run the k6 script and send metrics to the Prometheus container started on the previous step. You must set the
testid
tag with a unique identifier to segment the metrics into discrete test runs for the Grafana dashboards.docker-compose run --rm -T k6 run -<samples/test.js --tag testid=<SOME-ID>
For convenience, the
docker-run.sh
can be used to simply:./docker-run.sh samples/test.js
-
Visit http://localhost:3000/ to view results in Grafana.
The docker-compose setup comes with some pre-built Grafana dashboards. Check the dashboard guide for details.
Note: The dashboards work with the Native Histogram mapping so it is required to enable it.