“Influxdb 2.0 Excluir medição” Respostas de código

Influxdb 2.0 Excluir medição

influx delete \
  --token token \ # Needed for me but not in source
  --org organization \ # Needed for me but not in source
  --bucket example-bucket \
  --start 1970-01-01T00:00:00Z \
  --stop $(date +"%Y-%m-%dT%H:%M:%SZ") \
  --predicate '_measurement="example-measurement"'
Steve-Tech

Medição de exclusão do InfluxDB com base na data

# InfluxDB: delete from measurement, based on time
DELETE FROM foo WHERE time > '2014-06-30' and time < '2014-06-30 15:16:01'
Thoughtless Tapir

Respostas semelhantes a “Influxdb 2.0 Excluir medição”

Perguntas semelhantes a “Influxdb 2.0 Excluir medição”

Mais respostas relacionadas para “Influxdb 2.0 Excluir medição” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código