com.fasterxml.clustermate.service.metrics.ExternalMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clustermate-service Show documentation
Show all versions of clustermate-service Show documentation
Building blocks for ClusterMate-based services and servers.
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; }
}