
metrics_influxdb.serialization.line.InfluxDBSortedMap 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.serialization.line;
import java.util.TreeMap;
/**
* Not sure if something needs to be done to match golang byte comparison as described in influxdb documentation
* Let's use a simple TreeMap with no comparator so that lexical order will be used.
*/
public class InfluxDBSortedMap extends TreeMap {
private static final long serialVersionUID = -7218529992523196655L;
public InfluxDBSortedMap() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy