All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.despegar.khronus.jclient.Measure Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
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