Package org.infinispan.client.hotrod
Interface ServerStatistics
-
public interface ServerStatisticsDefines the possible list of statistics defined by the Hot Rod server. Can be obtained throughRemoteCache.stats()- Since:
- 4.1
- Author:
- Mircea.Markus@jboss.com
-
-
Field Summary
Fields Modifier and Type Field Description static StringAPPROXIMATE_ENTRIESApproximate number of entry copies currently in the server cache, including persistence.static StringAPPROXIMATE_ENTRIES_UNIQUENumber of unique entries currently stored in server cache, including persistence.static StringCLUSTER_APPROXIMATE_ENTRIESApproximate number of entry copies currently in the server cache cluster-wide, including persistence.static StringCLUSTER_APPROXIMATE_ENTRIES_UNIQUENumber of unique entries currently stored in server cache cluster-wide, including persistence.static StringCURRENT_NR_OF_ENTRIESDeprecated.Since 14.0, please useAPPROXIMATE_ENTRIESstatic StringHITSNumber of get hits.static StringMISSESNumber of get misses.static StringREMOVE_HITSNumber of removal hits.static StringREMOVE_MISSESNumber of removal misses.static StringRETRIEVALSNumber of get operations.static StringSTORESNumber of entries ever stored.static StringTIME_SINCE_STARTNumber of seconds since Hot Rod started.static StringTOTAL_NR_OF_ENTRIESDeprecated.Since 13.0, please useSTORESinstead.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegergetIntStatistic(String statsName)StringgetStatistic(String statsName)Map<String,String>getStatsMap()
-
-
-
Field Detail
-
TIME_SINCE_START
static final String TIME_SINCE_START
Number of seconds since Hot Rod started.- See Also:
- Constant Field Values
-
CURRENT_NR_OF_ENTRIES
@Deprecated static final String CURRENT_NR_OF_ENTRIES
Deprecated.Since 14.0, please useAPPROXIMATE_ENTRIESNumber of entries currently in the Hot Rod server- See Also:
- Constant Field Values
-
TOTAL_NR_OF_ENTRIES
@Deprecated static final String TOTAL_NR_OF_ENTRIES
Deprecated.Since 13.0, please useSTORESinstead.Number of entries stored in Hot Rod server since the server started running.- See Also:
- Constant Field Values
-
APPROXIMATE_ENTRIES
static final String APPROXIMATE_ENTRIES
Approximate number of entry copies currently in the server cache, including persistence. Only entries local to the server receiving the request are included.- See Also:
- Constant Field Values
-
APPROXIMATE_ENTRIES_UNIQUE
static final String APPROXIMATE_ENTRIES_UNIQUE
Number of unique entries currently stored in server cache, including persistence. Only entries primary-owned by the server receiving the request are included.- See Also:
- Constant Field Values
-
STORES
static final String STORES
Number of entries ever stored.- See Also:
- Constant Field Values
-
RETRIEVALS
static final String RETRIEVALS
Number of get operations.- See Also:
- Constant Field Values
-
HITS
static final String HITS
Number of get hits.- See Also:
- Constant Field Values
-
MISSES
static final String MISSES
Number of get misses.- See Also:
- Constant Field Values
-
REMOVE_HITS
static final String REMOVE_HITS
Number of removal hits.- See Also:
- Constant Field Values
-
REMOVE_MISSES
static final String REMOVE_MISSES
Number of removal misses.- See Also:
- Constant Field Values
-
CLUSTER_APPROXIMATE_ENTRIES
static final String CLUSTER_APPROXIMATE_ENTRIES
Approximate number of entry copies currently in the server cache cluster-wide, including persistence. Entries owned by multiple nodes are counted once for each owner.- See Also:
- Constant Field Values
-
CLUSTER_APPROXIMATE_ENTRIES_UNIQUE
static final String CLUSTER_APPROXIMATE_ENTRIES_UNIQUE
Number of unique entries currently stored in server cache cluster-wide, including persistence. Entries owned by multiple nodes are counted only once.- See Also:
- Constant Field Values
-
-