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 throughRemoteCache.stats()
- Since:
- 4.1
- Author:
- Mircea.Markus@jboss.com
-
-
Field Summary
Fields Modifier and Type Field Description static String
CURRENT_NR_OF_ENTRIES
Number of entries currently in the Hot Rod serverstatic String
HITS
Number of get hits.static String
MISSES
Number of get misses.static String
REMOVE_HITS
Number of removal hits.static String
REMOVE_MISSES
Number of removal misses.static String
RETRIEVALS
Number of get operations.static String
STORES
Number of put operations.static String
TIME_SINCE_START
Number of seconds since Hot Rod started.static String
TOTAL_NR_OF_ENTRIES
Number of entries stored in Hot Rod server since the server started running.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Integer
getIntStatistic(String statsName)
String
getStatistic(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
static final String CURRENT_NR_OF_ENTRIES
Number of entries currently in the Hot Rod server- See Also:
- Constant Field Values
-
TOTAL_NR_OF_ENTRIES
static final String TOTAL_NR_OF_ENTRIES
Number of entries stored in Hot Rod server since the server started running.- See Also:
- Constant Field Values
-
STORES
static final String STORES
Number of put operations.- 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
-
-