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 Detail

      • TOTAL_NR_OF_ENTRIES

        @Deprecated
        static final String TOTAL_NR_OF_ENTRIES
        Deprecated.
        Since 13.0, please use STORES instead.
        Number of entries stored in Hot Rod server since the server started running.
        See Also:
        Constant Field Values
      • APPROXIMATE_ENTRIES

        static final String APPROXIMATE_ENTRIES
        Approximate number of entry copies currently in the server cache, including persistence. Only entries local to the server receiving the request are included.
        See Also:
        Constant Field Values
      • APPROXIMATE_ENTRIES_UNIQUE

        static final String APPROXIMATE_ENTRIES_UNIQUE
        Number of unique entries currently stored in server cache, including persistence. Only entries primary-owned by the server receiving the request are included.
        See Also:
        Constant Field Values
      • CLUSTER_APPROXIMATE_ENTRIES

        static final String CLUSTER_APPROXIMATE_ENTRIES
        Approximate number of entry copies currently in the server cache cluster-wide, including persistence. Entries owned by multiple nodes are counted once for each owner.
        See Also:
        Constant Field Values
      • CLUSTER_APPROXIMATE_ENTRIES_UNIQUE

        static final String CLUSTER_APPROXIMATE_ENTRIES_UNIQUE
        Number of unique entries currently stored in server cache cluster-wide, including persistence. Entries owned by multiple nodes are counted only once.
        See Also:
        Constant Field Values