
metrics_influxdb.v08.JsonBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metrics-influxdb Show documentation
Show all versions of metrics-influxdb Show documentation
A reporter for metrics which announces measurements to an InfluxDB server.
The newest version!
package metrics_influxdb.v08;
interface JsonBuilder {
/**
* Returns true if this builder has series data to send.
*/
public abstract boolean hasSeriesData();
/**
* Forget previous appendSeries.
*/
public abstract void reset();
/**
* generate the json as String.
*/
public abstract String toJsonString();
/**
* Append series of data into the next Request to send.
*
* @param namePrefix
* @param name
* @param nameSuffix
* @param columns
* @param points
*/
public abstract void appendSeries(String namePrefix, String name, String nameSuffix, String[] columns, Object[][] points);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy