Uses of Class
com.influxdb.v3.client.write.Point
-
Packages that use Point Package Description com.influxdb.v3.client com.influxdb.v3.client.internal com.influxdb.v3.client.write -
-
Uses of Point in com.influxdb.v3.client
Methods in com.influxdb.v3.client with parameters of type Point Modifier and Type Method Description void
InfluxDBClient. writePoint(Point point)
Write aPoint
to the InfluxDB server.void
InfluxDBClient. writePoint(Point point, WriteOptions options)
Write aPoint
to the InfluxDB server.Method parameters in com.influxdb.v3.client with type arguments of type Point Modifier and Type Method Description void
InfluxDBClient. writePoints(List<Point> points)
Write a list ofPoint
to the InfluxDB server.void
InfluxDBClient. writePoints(List<Point> points, WriteOptions options)
Write a list ofPoint
to the InfluxDB server. -
Uses of Point in com.influxdb.v3.client.internal
Methods in com.influxdb.v3.client.internal with parameters of type Point Modifier and Type Method Description void
InfluxDBClientImpl. writePoint(Point point)
void
InfluxDBClientImpl. writePoint(Point point, WriteOptions options)
Method parameters in com.influxdb.v3.client.internal with type arguments of type Point Modifier and Type Method Description void
InfluxDBClientImpl. writePoints(List<Point> points)
void
InfluxDBClientImpl. writePoints(List<Point> points, WriteOptions options)
-
Uses of Point in com.influxdb.v3.client.write
Methods in com.influxdb.v3.client.write that return Point Modifier and Type Method Description Point
Point. addField(String field, boolean value)
AddBoolean
field.Point
Point. addField(String field, double value)
AddDouble
field.Point
Point. addField(String field, long value)
AddLong
field.Point
Point. addField(String field, Number value)
AddNumber
field.Point
Point. addField(String field, String value)
AddString
field.Point
Point. addFields(Map<String,Object> fieldsToAdd)
Adds or replaces fields for this point.Point
Point. addTag(String key, String value)
Adds or replaces a tag value for this point.Point
Point. addTags(Map<String,String> tagsToAdd)
Adds or replaces tags for this point.static Point
Point. measurement(String measurementName)
Create a new Point withe specified a measurement name.Point
Point. setTimestamp(Long time, WritePrecision precision)
Updates the timestamp for the point.Point
Point. setTimestamp(Number time, WritePrecision precision)
Updates the timestamp for the point.Point
Point. setTimestamp(Instant time)
Updates the timestamp for the point.
-