
com.despegar.khronus.jclient.Measure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of khronus-java-client Show documentation
Show all versions of khronus-java-client Show documentation
A simple Java client for Khronus.
package com.despegar.khronus.jclient;
public abstract class Measure {
private String metricName;
private long timestamp;
private long value;
public Measure(String metricName, long value, long timestamp) {
this.metricName = metricName;
this.timestamp = timestamp;
this.value = value;
}
public long getTimestamp() {
return timestamp;
}
public long getValue() {
return value;
}
public abstract MetricType getType();
public String getMetricName() {
return metricName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy