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 InfluxDB V2 API alllows:
org
orgID
bucket
As parameters for the write API.
K6 uses "org" which is not the orgID. the documentation is misleading, and this commit fixes that.
Also it makes it more explicit that you need the bucket name and not the bucket id.
@@ -37,8 +37,8 @@ Here is the full list of options that can be configured and passed to the extens
37
37
38
38
| ENV | Default | Description |
39
39
|-----|---------|-------------|
40
-
| K6_INFLUXDB_ORGANIZATION || Your InfluxDB organization ID. [View organizations](https://docs.influxdata.com/influxdb/v2.7/organizations/). |
41
-
| K6_INFLUXDB_BUCKET || The bucket to store k6 metrics data. [Manage buckets](https://docs.influxdata.com/influxdb/v2.7/organizations/buckets/). |
40
+
| K6_INFLUXDB_ORGANIZATION || Your InfluxDB organization name. [View organizations](https://docs.influxdata.com/influxdb/v2.7/organizations/). |
41
+
| K6_INFLUXDB_BUCKET || The bucket name to store k6 metrics data. [Manage buckets](https://docs.influxdata.com/influxdb/v2.7/organizations/buckets/). |
42
42
| K6_INFLUXDB_TOKEN || An API token that provides authorized access to store data. [Manage API tokens](https://docs.influxdata.com/influxdb/v2.7/security/tokens/). |
43
43
| K6_INFLUXDB_ADDR |http://localhost:8086| The address of the InfluxDB instance. |
44
44
| K6_INFLUXDB_PUSH_INTERVAL | 1s | The flush's frequency of the `k6` metrics. |
@@ -53,4 +53,4 @@ You can use Grafana to query and visualize data from an InfluxDB instance. The i
53
53
54
54
You can also build a [custom Grafana dashboard](/results-output/grafana-dashboards/) to visualize the testing results in your own way.
55
55
56
-
For testing purposes, the [influxdb extension](https://github.com/grafana/xk6-output-influxdb) repository includes a [docker-compose setup](https://github.com/grafana/xk6-output-influxdb#docker-compose) with two basic dashboards.
56
+
For testing purposes, the [influxdb extension](https://github.com/grafana/xk6-output-influxdb) repository includes a [docker-compose setup](https://github.com/grafana/xk6-output-influxdb#docker-compose) with two basic dashboards.
0 commit comments