use of org.influxdb.dto.BatchPoints in project incubator-gobblin by apache.
the class TestInfluxDB method write.
@Override
public void write(String database, String retentionPolicy, Point point) {
BatchPoints batchPoints = BatchPoints.database(database).retentionPolicy(retentionPolicy).build();
batchPoints.point(point);
this.write(batchPoints);
}
Aggregations