Package com.influxdb.client
Interface DeleteApi
- All Known Implementing Classes:
DeleteApiImpl
@ThreadSafe
public interface DeleteApi
API to Delete time-series data from InfluxDB 2.x.
- Author:
- Pavlina Rolincova (rolincova@github) (25/10/2019).
-
Method Summary
Modifier and TypeMethodDescriptionvoid
delete
(DeletePredicateRequest predicate, String bucket, String org) Delete Time series data from InfluxDB.void
delete
(OffsetDateTime start, OffsetDateTime stop, String predicate, Bucket bucket, Organization org) Delete Time series data from InfluxDB.void
delete
(OffsetDateTime start, OffsetDateTime stop, String predicate, String bucket, String org) Delete Time series data from InfluxDB.
-
Method Details
-
delete
void delete(@Nonnull OffsetDateTime start, @Nonnull OffsetDateTime stop, @Nonnull String predicate, @Nonnull Bucket bucket, @Nonnull Organization org) Delete Time series data from InfluxDB.- Parameters:
start
- timestop
- timepredicate
- sql where like delete statement.bucket
- The bucket from which data will be deleted.org
- The organization of the above bucket.
-
delete
void delete(@Nonnull OffsetDateTime start, @Nonnull OffsetDateTime stop, @Nonnull String predicate, @Nonnull String bucket, @Nonnull String org) Delete Time series data from InfluxDB.- Parameters:
start
- timestop
- timepredicate
- sql where like delete statement.bucket
- The bucket from which data will be deleted.org
- The organization of the above bucket.
-
delete
Delete Time series data from InfluxDB.- Parameters:
predicate
- delete request.bucket
- The bucket from which data will be deleted.org
- The organization of the above bucket.
-