使用 k6 时如何向 influxdb 进行身份验证

How to authenticate to influxdb when using k6

我正在使用 k6 作为负载测试工具,我想将数据写入 influxdb。一切正常,除了我不知道如何为 influxdb 发送用户凭据。

示例:

./k6.exe run --out "influxdb=http://localhost:8086/stresstest" script.js --vus 10 --duration 3s

我试过像这样传递 influxdb 用户名和密码,但没有用

./k6.exe run --out "influxdb=http://localhost:8086/stresstest?u=<USERNAME>&p=<PASSWORD>" script.js --vus 10 --duration 3s

我不想禁用 influxdb 身份验证!

您可以像这样在 InfluxDB URL 中将它们作为 HTTP 身份验证传递:--out "influxdb=http://<username>:<password>@localhost:8086/stresstest"

或者,您也可以通过 K6_INFLUXDB_USERNAMEK6_INFLUXDB_PASSWORD 环境变量指定它们。