JBoss Data Grid HotRod C# Client  7.2.0
Public Member Functions | Public Attributes | List of all members
Infinispan.HotRod.ServerStatistics Class Referenceabstract

Defines the possible list of statistics defined by the Hot Rod server. More...

Public Member Functions

abstract IDictionary< String, String > GetStatsMap ()
 Retrieve the complete list of statistics and their associated value. More...
 
abstract String GetStatistic (String statName)
 Retrive the value of the specified statistic. More...
 
abstract int GetIntStatistic (String statName)
 Retrive the value of the specified statistic. More...
 

Public Attributes

const String TIME_SINCE_START = "timeSinceStart"
 Number of seconds since Hot Rod started. More...
 
const String CURRENT_NR_OF_ENTRIES = "currentNumberOfEntries"
 Number of entries currently in the Hot Rod server. More...
 
const String TOTAL_NR_OF_ENTRIES = "totalNumberOfEntries"
 Number of entries stored in Hot Rod server since the server started running. More...
 
const String STORES = "stores"
 Number of put operations. More...
 
const String RETRIEVALS = "retrievals"
 Number of get operations. More...
 
const String HITS = "hits"
 Number of get hits. More...
 
const String MISSES = "misses"
 Number of get misses. More...
 
const String REMOVE_HITS = "removeHits"
 Number of removal hits. More...
 
const String REMOVE_MISSES = "removeMisses"
 Number of removal misses. More...
 

Detailed Description

Defines the possible list of statistics defined by the Hot Rod server.

Member Function Documentation

abstract int Infinispan.HotRod.ServerStatistics.GetIntStatistic ( String  statName)
pure virtual

Retrive the value of the specified statistic.

Parameters
statNamename of the statistic to retrieve
Returns
the value for the specified statistic as an int or -1 if no value is available
abstract String Infinispan.HotRod.ServerStatistics.GetStatistic ( String  statName)
pure virtual

Retrive the value of the specified statistic.

Parameters
statNamename of the statistic to retrieve
Returns
the value for the specified statistic as a string or null
abstract IDictionary<String, String> Infinispan.HotRod.ServerStatistics.GetStatsMap ( )
pure virtual

Retrieve the complete list of statistics and their associated value.

Member Data Documentation

const String Infinispan.HotRod.ServerStatistics.CURRENT_NR_OF_ENTRIES = "currentNumberOfEntries"

Number of entries currently in the Hot Rod server.

const String Infinispan.HotRod.ServerStatistics.HITS = "hits"

Number of get hits.

const String Infinispan.HotRod.ServerStatistics.MISSES = "misses"

Number of get misses.

const String Infinispan.HotRod.ServerStatistics.REMOVE_HITS = "removeHits"

Number of removal hits.

const String Infinispan.HotRod.ServerStatistics.REMOVE_MISSES = "removeMisses"

Number of removal misses.

const String Infinispan.HotRod.ServerStatistics.RETRIEVALS = "retrievals"

Number of get operations.

const String Infinispan.HotRod.ServerStatistics.STORES = "stores"

Number of put operations.

const String Infinispan.HotRod.ServerStatistics.TIME_SINCE_START = "timeSinceStart"

Number of seconds since Hot Rod started.

const String Infinispan.HotRod.ServerStatistics.TOTAL_NR_OF_ENTRIES = "totalNumberOfEntries"

Number of entries stored in Hot Rod server since the server started running.


The documentation for this class was generated from the following file: