Package org.infinispan.client.hotrod
Interface ServerStatistics
- All Known Implementing Classes:
ServerStatisticsImpl
public interface ServerStatistics
Defines the possible list of statistics defined by the Hot Rod server.
Can be obtained through
RemoteCache.serverStatistics()
- Since:
- 4.1
- Author:
- Mircea.Markus@jboss.com
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Approximate current number of entry replicas in the cache on the server that receives the request.static final String
Approximate current number of entries for which the server that receives the request is the primary owner.static final String
Approximate current number of entry replicas currently in the cache cluster-wide.static final String
Approximate current number of unique entries in the cache cluster-wide.static final String
Deprecated, for removal: This API element is subject to removal in a future version.static final String
Number of get hits.static final String
Number of get misses.static final String
Number of removal hits.static final String
Number of removal misses.static final String
Number of get operations.static final String
Number of entries stored in the cache by the server that receives the request since the cache started running.static final String
Number of seconds since Hot Rod started. -
Method Summary
Modifier and TypeMethodDescriptiongetIntStatistic
(String statsName) getStatistic
(String statsName)
-
Field Details
-
TIME_SINCE_START
Number of seconds since Hot Rod started.- See Also:
-
CURRENT_NR_OF_ENTRIES
Deprecated, for removal: This API element is subject to removal in a future version.Since 14.0, please useAPPROXIMATE_ENTRIES
Number of entries currently in the Hot Rod server- See Also:
-
APPROXIMATE_ENTRIES
Approximate current number of entry replicas in the cache on the server that receives the request.Includes both entries in memory and in persistent storage.
- See Also:
-
APPROXIMATE_ENTRIES_UNIQUE
Approximate current number of entries for which the server that receives the request is the primary owner.Includes both entries in memory and in persistent storage.
- See Also:
-
STORES
Number of entries stored in the cache by the server that receives the request since the cache started running.- See Also:
-
RETRIEVALS
Number of get operations.- See Also:
-
HITS
Number of get hits.- See Also:
-
MISSES
Number of get misses.- See Also:
-
REMOVE_HITS
Number of removal hits.- See Also:
-
REMOVE_MISSES
Number of removal misses.- See Also:
-
CLUSTER_APPROXIMATE_ENTRIES
Approximate current number of entry replicas currently in the cache cluster-wide.Includes both entries in memory and in persistent storage.
- See Also:
-
CLUSTER_APPROXIMATE_ENTRIES_UNIQUE
Approximate current number of unique entries in the cache cluster-wide.Includes both entries in memory and in persistent storage. Entries owned by multiple nodes are counted only once.
- See Also:
-
-
Method Details
-
getStatsMap
-
getStatistic
-
getIntStatistic
-
APPROXIMATE_ENTRIES