All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.stats.ClusterContainerStats Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.stats;

/**
 * Cluster wide container statistics.
 *
 * @author Ryan Emerson
 * @since 9.0
 */
public interface ClusterContainerStats extends ClusterStats {

   String OBJECT_NAME = "ClusterContainerStats";

   /**
    * @return the maximum amount of free memory in bytes across the cluster JVMs.
    */
   long getMemoryAvailable();

   /**
    * @return the maximum amount of memory that JVMs across the cluster will attempt to utilise in bytes.
    */
   long getMemoryMax();

   /**
    * @return the total amount of memory in the JVMs across the cluster in bytes.
    */
   long getMemoryTotal();

   /**
    * @return the amount of memory used by JVMs across the cluster in bytes.
    */
   long getMemoryUsed();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy