n8n and InfluxDB integrate via InfluxDB's HTTP API. n8n workflows receive events (from MQTT, webhooks, schedule, or REST) and write structured line-protocol data to InfluxDB buckets. This positions n8n as the ETL/routing layer in a manufacturing data pipeline.
n8n uses the HTTP Request node to call the InfluxDB v2 write API endpoint (POST /api/v2/write). The workflow constructs the InfluxDB line protocol payload (measurement, tags, fields, timestamp) and posts it. For reads, n8n can also query InfluxDB via the Flux query API to fetch aggregated metrics for use in reports or decisions.