Related to "Tasks"
Process data with InfluxDB tasks
InfluxDB’s task engine runs scheduled Flux tasks that process and analyze data. This collection of articles provides information about creating and managing InfluxDB tasks.
Get started with InfluxDB tasks
Learn the basics of writing an InfluxDB task that processes data, and then performs an action, such as storing the modified data in a new bucket or sending an alert.
influx task
The influx task
command and its subcommands manage tasks in InfluxDB.
Manage tasks in InfluxDB
InfluxDB provides options for creating, reading, updating, and deleting tasks using the influx
CLI, the InfluxDB UI, and the InfluxDB API.
Common data processing tasks
InfluxDB Tasks process data on specified schedules. This collection of articles walks through common use cases for InfluxDB tasks.
Task configuration options
Task options define specific information about a task such as its name, the schedule on which it runs, execution delays, and others.
Create custom checks
Create custom checks with a Flux task.
Downsample data with InfluxDB
How to create a task that downsamples data much like continuous queries in previous versions of InfluxDB.
Calculate a weekly mean
Calculate a weekly mean and add it to a new bucket.
Convert results to JSON
Use json.encode()
to convert query results to JSON and http.post()
to send them to a URL endpoint.