connector
InfluxDB
Time-series database for metrics and events.
Connection fields
| Field | Required | Description |
|---|---|---|
host | Yes | Hostname or IP address of the InfluxDB server. |
port | No | Defaults to 8086. |
db | Yes | Database name to query. |
user | No | Username, if the server requires auth. |
password | No | Password for user. |
use_https | No | Use HTTPS. Defaults to false. |
This connector speaks InfluxDB v1's InfluxQL over its HTTP /query API — not InfluxDB 2.x's Flux language or token-based auth.
Example configuration
{
"host": "influxdb.internal.example.com",
"port": 8086,
"db": "metrics",
"user": "arcodash_reader",
"password": "••••••••",
"use_https": false
}