com.despegar.khronus.jclient.Counter 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 class Counter extends Measure {
public Counter(String metricName, long value, long timestamp) {
super(metricName, value, timestamp);
}
@Override
public MetricType getType() {
return MetricType.counter;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy