Interface ServerStatistics


  • public interface ServerStatistics
    Defines the possible list of statistics defined by the Hot Rod server. Can be obtained through RemoteCache.stats()
    Since:
    4.1
    Author:
    Mircea.Markus@jboss.com
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String CURRENT_NR_OF_ENTRIES
      Number of entries currently in the Hot Rod server
      static java.lang.String HITS
      Number of get hits.
      static java.lang.String MISSES
      Number of get misses.
      static java.lang.String REMOVE_HITS
      Number of removal hits.
      static java.lang.String REMOVE_MISSES
      Number of removal misses.
      static java.lang.String RETRIEVALS
      Number of get operations.
      static java.lang.String STORES
      Number of put operations.
      static java.lang.String TIME_SINCE_START
      Number of seconds since Hot Rod started.
      static java.lang.String TOTAL_NR_OF_ENTRIES
      Number of entries stored in Hot Rod server since the server started running.
    • Field Detail

      • TIME_SINCE_START

        static final java.lang.String TIME_SINCE_START
        Number of seconds since Hot Rod started.
        See Also:
        Constant Field Values
      • CURRENT_NR_OF_ENTRIES

        static final java.lang.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 java.lang.String TOTAL_NR_OF_ENTRIES
        Number of entries stored in Hot Rod server since the server started running.
        See Also:
        Constant Field Values
      • RETRIEVALS

        static final java.lang.String RETRIEVALS
        Number of get operations.
        See Also:
        Constant Field Values
      • REMOVE_HITS

        static final java.lang.String REMOVE_HITS
        Number of removal hits.
        See Also:
        Constant Field Values
      • REMOVE_MISSES

        static final java.lang.String REMOVE_MISSES
        Number of removal misses.
        See Also:
        Constant Field Values
    • Method Detail

      • getStatsMap

        java.util.Map<java.lang.String,​java.lang.String> getStatsMap()
      • getStatistic

        java.lang.String getStatistic​(java.lang.String statsName)
      • getIntStatistic

        java.lang.Integer getIntStatistic​(java.lang.String statsName)