2019-01-15 18:30:22 +00:00
|
|
|
---
|
|
|
|
title: Delete a task
|
|
|
|
seotitle: Delete a task for processing data in InfluxDB
|
|
|
|
description: >
|
|
|
|
How to delete a task in InfluxDB using the InfluxDB user interface or using
|
|
|
|
the 'influx' command line interface.
|
|
|
|
menu:
|
|
|
|
v2_0:
|
|
|
|
name: Delete a task
|
|
|
|
parent: Manage tasks
|
|
|
|
weight: 4
|
|
|
|
---
|
|
|
|
|
|
|
|
## Delete a task in the InfluxDB UI
|
2019-01-18 19:12:28 +00:00
|
|
|
1. 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
|
|
|
2. In the list of tasks, hover over the task you would like to delete.
|
|
|
|
3. Click **Delete** on the far right.
|
|
|
|
4. Click **Confirm**.
|
|
|
|
|
|
|
|
|
|
|
|
## Delete a task with the influx CLI
|
2019-01-18 06:04:56 +00:00
|
|
|
Use the `influx task delete` command to delete a task.
|
2019-01-18 19:12:28 +00:00
|
|
|
|
|
|
|
_This command requires a task ID, which is available in the output of `influx task find`._
|
2019-01-15 18:30:22 +00:00
|
|
|
|
|
|
|
```sh
|
2019-01-18 06:04:56 +00:00
|
|
|
# Pattern
|
|
|
|
influx task delete -i <task-id>
|
|
|
|
|
|
|
|
# Example
|
|
|
|
influx task delete -i 0343698431c35000
|
2019-01-15 18:30:22 +00:00
|
|
|
```
|