query-data
Execute Flux queries on InfluxDB time-series databases to retrieve and analyze data. Specify the organization and query string to fetch precise time-series insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
org | Yes | The organization name | |
query | Yes | Flux query string |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"org": {
"description": "The organization name",
"type": "string"
},
"query": {
"description": "Flux query string",
"type": "string"
}
},
"required": [
"org",
"query"
],
"type": "object"
}