2019-01-15 18:30:22 +00:00
|
|
|
---
|
|
|
|
title: Update a task
|
|
|
|
seotitle: Update a task for processing data in InfluxDB
|
|
|
|
description: >
|
|
|
|
How to update a task that processes data in InfluxDB using the InfluxDB user
|
|
|
|
interface or the 'influx' command line interface.
|
|
|
|
menu:
|
|
|
|
v2_0:
|
|
|
|
name: Update a task
|
|
|
|
parent: Manage tasks
|
|
|
|
weight: 3
|
|
|
|
---
|
|
|
|
|
|
|
|
## Update a task in the InfluxDB UI
|
2019-01-18 19:12:28 +00:00
|
|
|
To view your tasks, click the **Tasks** icon in the left navigation menu.
|
2019-01-15 18:30:22 +00:00
|
|
|
|
2019-01-18 19:12:28 +00:00
|
|
|
{{< img-hd src="/img/tasks-icon.png" alt="Tasks Icon" />}}
|
2019-01-15 18:30:22 +00:00
|
|
|
|
2019-01-18 19:12:28 +00:00
|
|
|
#### Update a task's Flux script
|
|
|
|
1. In the list of tasks, click the **Name** of the task you would like to update.
|
|
|
|
2. In the left panel, modify the task options.
|
|
|
|
3. In the right panel, modify the task script.
|
|
|
|
4. Click **Save** in the upper right.
|
|
|
|
|
|
|
|
{{< img-hd src="/img/tasks-create-edit.png" alt="Update a task" />}}
|
|
|
|
|
|
|
|
#### Update the status of a task
|
|
|
|
In the list of tasks, click the toggle in the **Active** column of the task you
|
|
|
|
would like to activate or inactivate.
|
|
|
|
|
|
|
|
|
|
|
|
## Update a task with the influx CLI
|
|
|
|
Use the `influx task update` command to update or change the status of an existing task.
|
|
|
|
|
|
|
|
_This command requires a task ID, which is available in the output of `influx task find`._
|
|
|
|
|
|
|
|
#### Update a task's Flux script
|
|
|
|
Pass the file path of your updated Flux script to the `influx task update` command
|
|
|
|
with the ID of the task you would like to update.
|
|
|
|
Modified [task options](/v2.0/process-data/task-options) defined in the Flux
|
|
|
|
script are also updated.
|
2019-01-15 18:30:22 +00:00
|
|
|
|
|
|
|
```sh
|
2019-01-18 06:04:56 +00:00
|
|
|
# Pattern
|
|
|
|
influx task update -i <task-id> @/path/to/updated-task-script
|
|
|
|
|
|
|
|
# Example
|
|
|
|
influx task update -i 0343698431c35000 @/tasks/cq-mean-1h.flux
|
|
|
|
```
|
|
|
|
|
2019-01-18 19:12:28 +00:00
|
|
|
#### Update the status of a task
|
|
|
|
Pass the ID of the task you would like to update to the `influx task update`
|
|
|
|
command with the `--status` flag.
|
|
|
|
|
|
|
|
_Possible arguments of the `--status` flag are `active` or `inactive`._
|
|
|
|
|
2019-01-18 06:04:56 +00:00
|
|
|
```sh
|
|
|
|
# Pattern
|
|
|
|
influx task update -i <task-id> --status < active | inactive >
|
|
|
|
|
|
|
|
# Example
|
|
|
|
influx task update -i 0343698431c35000 --status inactive
|
2019-01-15 18:30:22 +00:00
|
|
|
```
|