
* refactor: take clients out of internal * refactor: move stdio to pkg * Move internal/api to api * refactor: final changes for Kapacitor to access shared functionality * chore: regenerate mocks * fix: bad automated refactor * chore: extra formatting not caught by make fmt
23 lines
547 B
YAML
23 lines
547 B
YAML
description: Query influx using the Flux language
|
|
type: object
|
|
required:
|
|
- query
|
|
properties:
|
|
extern:
|
|
$ref: "./Extern.yml"
|
|
query:
|
|
description: Query script to execute.
|
|
type: string
|
|
type:
|
|
description: The type of query. Must be "flux".
|
|
type: string
|
|
enum:
|
|
- flux
|
|
default: flux
|
|
dialect:
|
|
$ref: "../../openapi/src/common/schemas/Dialect.yml"
|
|
now:
|
|
description: Specifies the time that should be reported as "now" in the query. Default is the server's now time.
|
|
type: string
|
|
format: date-time
|