com.fasterxml.clustermate.service.metrics.StoreMetrics 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;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* Simple container for metrics from various store backends.
*/
@JsonPropertyOrder({ "entries", "entryIndex", "lastAccessStore" })
public class StoreMetrics
{
public BackendMetrics entries;
public BackendMetrics entryIndex;
public BackendMetrics lastAccessStore;
}