Create a task
InfluxDB provides multiple ways to create tasks both in the InfluxDB user interface (UI) and the influx
command line interface (CLI).
Before creating a task, review the basics criteria for writing a task.
Create a task in the InfluxDB UI
The InfluxDB UI provides multiple ways to create a task:
- Create a task from the Data Explorer
- Create a task in the Task UI
- Import a task
- Create a task from a template
- Clone a task
Create a task from the Data Explorer
In the navigation menu on the left, select Explore (Data Explorer).
Explore
Data Explorer
Build a query and click Save As in the upper right.
Select the Task option.
Specify the task options. See Task options for detailed information about each option.
Select a token to use from the Token dropdown.
Click Save as Task.
Create a task in the Task UI
In the navigation menu on the left, select Tasks.
Tasks
Tasks
Click Create Task in the upper right.
Select New Task.
In the left panel, specify the task options. See Task options for detailed information about each option.
Select a token to use from the Token dropdown.
In the right panel, enter your task script.
Click Save in the upper right.
Import a task
In the navigation menu on the left, select Tasks.
Tasks
Tasks
Click + Create Task in the upper right.
Select Import Task.
Upload a JSON task file using one of the following options:
- Drag and drop a JSON task file in the specified area.
- Click to upload and the area to select the JSON task from from your file manager.
- Select the JSON option and paste in raw task JSON.
- Click Import JSON as Task.
Create a task from a template
In the navigation menu on the left, select Settings > Templates.
Settings
Settings
Select Templates.
Hover over the template to use to create the task and click Create.
Clone a task
In the navigation menu on the left, select Tasks.
Tasks
Tasks
Hover over the task you would like to clone and click the icon that appears.
Click Clone.
Create a task using the influx CLI
Use influx task create
command to create a new task. It accepts either a file path or raw Flux.
Create a task using a file
# Syntax
influx task create --org <org-name> -f </path/to/task-script>
# Example
influx task create --org my-org -f /tasks/cq-mean-1h.flux
Create a task using raw Flux
influx task create --org my-org - # <return> to open stdin pipe
options task = {
name: "task-name",
every: 6h
}
# ... Task script ...
# <ctrl-d> to close the pipe and submit the command