| Package | Description |
|---|---|
| com.github.nickrm.jflux |
Contains the main high-level InfluxDB client provided by this library, plus the classes that
support its functionality (e.g.
|
| com.github.nickrm.jflux.domain |
Domain classes which represent domain entities defined by or relevant to InfluxDB, and used
throughout this library.
|
| Modifier and Type | Method and Description |
|---|---|
List<Point> |
JFluxClient.getAllPoints(String measurementName)
Alias for
JFluxClient.getAllPoints(String, String) using a preselected database. |
List<Point> |
JFluxClient.getAllPoints(String databaseName,
String measurementName)
Retrieves all points for the specified measurement.
|
| Modifier and Type | Method and Description |
|---|---|
void |
JFluxClient.writePoint(String measurementName,
Point point)
Alias for
JFluxClient.writePoints(String, Collection) for a single point. |
void |
JFluxClient.writePoint(String measurementName,
Point point,
String retentionPolicyName)
Alias for
JFluxClient.writePoints(String, Collection, String) for a single point. |
void |
JFluxClient.writePoint(String databaseName,
String measurementName,
Point point)
Alias for
JFluxClient.writePoints(String, String, Collection) for a single point. |
void |
JFluxClient.writePoint(String databaseName,
String measurementName,
Point point,
String retentionPolicyName)
Alias for
JFluxClient.writePoints(String, String, Collection, String) for a single point. |
| Modifier and Type | Method and Description |
|---|---|
void |
JFluxClient.writePoints(String measurementName,
Collection<Point> points)
Writes the specified points to InfluxDB, using the default retention policy.
|
void |
JFluxClient.writePoints(String measurementName,
Collection<Point> points,
String retentionPolicyName)
Writes the specified points to InfluxDB.
|
void |
JFluxClient.writePoints(String databaseName,
String measurementName,
Collection<Point> points)
Writes the specified points to InfluxDB, using the default retention policy.
|
void |
JFluxClient.writePoints(String databaseName,
String measurementName,
Collection<Point> points,
String retentionPolicyName)
Writes the specified points to InfluxDB.
|
| Modifier and Type | Method and Description |
|---|---|
Point |
Point.Builder.build()
Builds a new
Point instance using the values in this builder. |
| Modifier and Type | Method and Description |
|---|---|
List<Point> |
Measurement.getPoints()
Gets the points in this measurement.
|
| Modifier and Type | Method and Description |
|---|---|
Measurement.Builder |
Measurement.Builder.points(List<Point> points)
Sets the points for the measurement to be constructed.
|
Copyright © 2020. All rights reserved.