JMX Components

MBean Summary 
Name Description
RemoteCacheClientStatisticsMXBeanRemoteCache client-side statistics (such as number of connections)
RemoteCacheManagerMXBeanRemoteCacheManager client-side statistics and operations
    • RemoteCacheClientStatisticsMXBean

      RemoteCache client-side statistics (such as number of connections)

      Attributes 
      NameDescriptionTypeWritable
      AverageRemoteReadTimeReturns the average read time, in milliseconds, for a remote cache.longfalse
      AverageRemoteRemovesTimeReturns the average time, in milliseconds, for remove operations in a remote cache.longfalse
      AverageRemoteStoreTimeReturns the average store time, in milliseconds, for a remote cache.longfalse
      NearCacheHitsReturns the number of near-cache hits. Returns a value of 0 if near-caching is disabled.longfalse
      NearCacheInvalidationsReturns the number of near-cache invalidations. Returns a value of 0 if near-caching is disabled.longfalse
      NearCacheMissesReturns the number of near-cache misses. Returns a value of 0 if near-caching is disabled.longfalse
      NearCacheSizeReturns the number of entries currently stored in the near-cache. Returns a value of 0 if near-caching is disabled.longfalse
      RemoteHitsReturns the number of hits for a remote cache.longfalse
      RemoteMissesReturns the number of misses for a remote cache.longfalse
      RemoteRemovesReturns the number of removes for a remote cache.longfalse
      RemoteStoresReturns the number of remote cache stores (put, replace) that the client applied. Failed conditional operations do not increase the count of entries in the remote cache. Put operations always increase the count even if an operation replaces an equal value.longfalse
      TimeSinceResetReturns the time, in seconds, since the last reset. See {@link #resetStatistics()}longfalse
      Operations 
      NameDescriptionSignature
      resetStatisticsResets statistics.void resetStatistics()
    • RemoteCacheManagerMXBean

      RemoteCacheManager client-side statistics and operations

      Attributes 
      NameDescriptionTypeWritable
      ActiveConnectionCountReturns the number of active connectionsintfalse
      ConnectionCountReturns the total number of connectionsintfalse
      IdleConnectionCountReturns the number of idle connectionsintfalse
      RetriesReturns the total number of retries that have been executedlongfalse
      ServersReturns a list of servers to which the client is currently connected in the format of ip_address:port_number.java.lang.String[]false
      Operations 
      NameDescriptionSignature
      switchToClusterSwitch remote cache manager to a different cluster, previously declared via configuration. If the switch was completed successfully, this method returns {@code true}, otherwise it returns {@code false}.boolean switchToCluster(java.lang.String clusterName)
      switchToDefaultClusterSwitch remote cache manager to a the default cluster, previously declared via configuration. If the switch was completed successfully, this method returns {@code true}, otherwise it returns {@code false}.boolean switchToDefaultCluster()