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 Details

    • TIME_SINCE_START

      static final String TIME_SINCE_START
      Number of seconds since Hot Rod started.
      See Also:
    • CURRENT_NR_OF_ENTRIES

      @Deprecated(forRemoval=true, since="14.0") static final String CURRENT_NR_OF_ENTRIES
      Deprecated, for removal: This API element is subject to removal in a future version.
      Since 14.0, please use APPROXIMATE_ENTRIES
      Number of entries currently in the Hot Rod server
      See Also:
    • APPROXIMATE_ENTRIES

      static final String 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

      static final String 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

      static final String STORES
      Number of entries stored in the cache by the server that receives the request since the cache started running.
      See Also:
    • RETRIEVALS

      static final String RETRIEVALS
      Number of get operations.
      See Also:
    • HITS

      static final String HITS
      Number of get hits.
      See Also:
    • MISSES

      static final String MISSES
      Number of get misses.
      See Also:
    • REMOVE_HITS

      static final String REMOVE_HITS
      Number of removal hits.
      See Also:
    • REMOVE_MISSES

      static final String REMOVE_MISSES
      Number of removal misses.
      See Also:
    • CLUSTER_APPROXIMATE_ENTRIES

      static final String 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

      static final String 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