Horje
influxdb 2.0 delete measurement Code Example
influxdb delete measurement based on date
# InfluxDB: delete from measurement, based on time
DELETE FROM foo WHERE time > '2014-06-30' and time < '2014-06-30 15:16:01'
influxdb 2.0 delete measurement
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"'




Shell

Related
ubuntu list ssh keys Code Example ubuntu list ssh keys Code Example
how to undo a commit sent that was pushed Code Example how to undo a commit sent that was pushed Code Example
makefile parameter Code Example makefile parameter Code Example
git checkout -f Code Example git checkout -f Code Example
Check your PC's SSH Key Code Example Check your PC's SSH Key Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13