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

com.fasterxml.clustermate.service.metrics.ExternalMetrics Maven / Gradle / Ivy

There is a newer version: 0.10.5
Show newest version
package com.fasterxml.clustermate.service.metrics;

/**
 * Simple POJO for serving metrics externally
 */
public class ExternalMetrics
{
    public StoreMetrics stores = new StoreMetrics();

    public AllOperationMetrics operations;

    public long lastUpdated;
    
    // for (de)serialization
    protected ExternalMetrics() { }
    public ExternalMetrics(long created) {
        lastUpdated = created;
    }

    public long creationTime() { return lastUpdated; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy