从 influxdb 2.0 中删除数据

delete data from influxdb 2.0

我想从 influxdb v2.0 中删除数据: 我阅读了它的文档并尝试了它所说的两种方法,但我得到了错误。

https://docs.influxdata.com/influxdb/v2.0/write-data/delete-data/

在命令行中:

influx delete \
--host HOST \
--org ORG \
--token TOKEN \
--bucket BUCKET \
--start 2021-06-01T00:00:00Z \
--stop 2021-06-01T01:00:00Z

错误:

Error: Failed to delete data: Not implemented.
See 'influx delete -h' for help

你能帮我吗,我怎样才能删除数据?

从同一主机删除数据:

influx delete --bucket example-bucket \
  --start 2020-03-01T00:00:00Z \
  --stop 2020-11-14T00:00:00Z

您也可以通过Curl删除数据

curl --request POST https://influxurl/api/v2/delete?org=example-org&bucket=example-bucket \
  --header 'Authorization: Token YOUR_API_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
    "start": "2022-01-19T06:32:00Z",
    "stop": "2022-01-19T06:33:00Z",
    "predicate": "_measurement=\"example-measurement\" AND feature=\"temp2\" "
  }'

谓词方法无法正常工作。 (错误)