connector
InfluxDB logo

InfluxDB

Time-series database for metrics and events.

Connection fields

FieldRequiredDescription
hostYesHostname or IP address of the InfluxDB server.
portNoDefaults to 8086.
dbYesDatabase name to query.
userNoUsername, if the server requires auth.
passwordNoPassword for user.
use_httpsNoUse 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
}