2025-08-04 06:49:49 +00:00
---
id: influxdb
title: InfluxDB
---
ToolJet can connect to InfluxDB databases to read and write data. Use the Token authentication scheme to authenticate to the InfluxDB API. For more info visit [InfluxDB docs ](https://docs.influxdata.com/ ).
## Connection
ToolJet connects to InfluxDB using :
- **API Token**
- **Host**
- **Port**
- **Protocol** (HTTP/HTTPS)
:::info
For generating API Token visit [InfluxDB docs ](https://docs.influxdata.com/influxdb/cloud/security/tokens/create-token/ ).
:::
2026-01-13 07:52:28 +00:00
< img className = "screenshot-full img-full" src = "/img/datasource-reference/influxdb/influxauth-v3.png" alt = "influx auth" / >
2025-08-04 06:49:49 +00:00
## Supported Queries
- **[Write data](#write-data)**
- **[Query data](#query-data)**
- **[Generate an Abstract Syntax Tree (AST) from a query](#generate-an-abstract-syntax-tree-ast-from-a-query)**
- **[Retrieve query suggestions](#retrieve-query-suggestions)**
- **[Retrieve query suggestions for a branching suggestion](#retrieve-query-suggestions-for-a-branching-suggestion)**
- **[Analyze a Flux query](#analyze-a-flux-query)**
- **[List buckets](#list-buckets)**
- **[Create a bucket](#create-a-bucket)**
- **[Retrieve a bucket](#retrieve-a-bucket)**
- **[Update a bucket](#update-a-bucket)**
- **[Delete a bucket](#delete-a-bucket)**
2026-02-12 06:30:39 +00:00
< img className = "screenshot-full img-full" src = "/img/datasource-reference/influxdb/listops-v4.png" alt = "influx operations" / >
2025-08-04 06:49:49 +00:00
### Write Data
This operation writes data to a bucket.
#### Required Parameters:
- **Bucket**
- **Organization name or ID**
- **Data**
#### Optional Parameters:
- **Precision**
2026-02-12 06:30:39 +00:00
< img className = "screenshot-full img-full" src = "/img/datasource-reference/influxdb/write-query.png" alt = "write query operations" / >
2026-01-13 07:52:28 +00:00
#### Example
```yaml
temperature, location = office value = 23.5
```
2025-08-04 06:49:49 +00:00
### Query Data
Retrieves data from InfluxDB buckets.
#### Required Parameters:
- **Organization name or ID**
- **Flux query**
2026-02-12 06:30:39 +00:00
< img className = "screenshot-full img-full" src = "/img/datasource-reference/influxdb/query-data.png" alt = "query data operations" / >
2025-08-04 06:49:49 +00:00
#### Example
```yaml
from(bucket: "sensor_data")
|> range(start: -1h)
|> filter(fn: (r) => r["_measurement"] == "temperature")
```
### Generate an Abstract Syntax Tree (AST) from a Query
This operation analyzes flux query and generates a query specification.
#### Required Parameters:
- **Query**
2026-02-12 06:30:39 +00:00
< img className = "screenshot-full img-full" src = "/img/datasource-reference/influxdb/generate-ast-query.png" alt = "generate query operations" / >
2025-08-04 06:49:49 +00:00
#### Example
```yaml
from(bucket: "website_metrics")
|> range(start: -7d)
|> filter(fn: (r) => r["_measurement"] == "page_views")
|> group(columns: ["url"])
|> sum(column: "_value")
|> sort(columns: ["_value"], desc: true)
```
### Retrieve Query Suggestions
This query retrieve query suggestions.
2026-02-12 06:30:39 +00:00
< img className = "screenshot-full img-full" src = "/img/datasource-reference/influxdb/retrieve-query.png" alt = "retrieve operations" / >
2025-08-04 06:49:49 +00:00
### Retrieve Query Suggestions for a Branching Suggestion
This operation retrieve query suggestions for a branching suggestion.
#### Required Parameters:
- **Name**
2026-02-12 06:30:39 +00:00
< img className = "screenshot-full img-full" src = "/img/datasource-reference/influxdb/retrieve-branching.png" alt = "retrieve operations" / >
2025-08-04 06:49:49 +00:00
### Analyze a Flux Query
This Analyzes a Flux query.
#### Required Parameters:
- **Query**
2026-02-12 06:30:39 +00:00
< img className = "screenshot-full img-full" src = "/img/datasource-reference/influxdb/analyze-flux.png" alt = "analyze query operations" / >
2025-08-04 06:49:49 +00:00
#### Example
```yaml
from(bucket: "sensor_data")
|> range(start: -1d)
|> filter(fn: (r) => r["_measurement"] == "humidity")
|> mean(column: "_value")
```
### List Buckets
This operation lists all the buckets in a database.
2026-02-12 06:30:39 +00:00
< img className = "screenshot-full img-full" src = "/img/datasource-reference/influxdb/list-bucket.png" alt = "list operations" / >
2025-08-04 06:49:49 +00:00
### Create a Bucket
This operation creates a bucket in database.
#### Required Parameters:
- **Query**
2026-02-12 06:30:39 +00:00
< img className = "screenshot-full img-full" src = "/img/datasource-reference/influxdb/create-bucket.png" alt = "create operations" / >
2025-08-04 06:49:49 +00:00
#### Example
```yaml
POST http://localhost:8086/api/v2/buckets
Content-Type: application/json
Authorization: Token your_auth_token
{
"name": "new_bucket",
"orgID": "your_org_id",
"retentionRules": [
{
"everySeconds": 3600
}
]
}
```
### Retrieve a Bucket
This operation retrieve a bucket in a database.
#### Required Parameters:
- **Bucket ID**
2026-02-12 06:30:39 +00:00
< img className = "screenshot-full img-full" src = "/img/datasource-reference/influxdb/retrieve-bucket.png" alt = "retrieve operations" / >
2025-08-04 06:49:49 +00:00
### Update a Bucket
This operaition updates the bucket in database.
#### Required Parameters:
- **Bucket ID**
- **Query**
2026-02-12 06:30:39 +00:00
< img className = "screenshot-full img-full" src = "/img/datasource-reference/influxdb/update-bucket.png" alt = "update operations" / >
2025-08-04 06:49:49 +00:00
#### Example
```yaml
{
"name": "updated_bucket_name",
"retentionRules": [
{
"everySeconds": 7200
}
]
}
```
### Delete a Bucket
This operation delete the bucket in database.
#### Required Parameters:
- **Bucket ID**
2026-02-12 06:30:39 +00:00
< img className = "screenshot-full img-full" src = "/img/datasource-reference/influxdb/delete-bucket.png" alt = "delete operations" / >