Package pulse.util

Class ResourceMonitor


  • public class ResourceMonitor
    extends Object
    Provides unified means of storage and methods of access to runtime system information, such as CPU usage, memory usage, an number of available threads.
    • Method Detail

      • update

        public void update()
      • memoryUsage

        public void memoryUsage()

        This will calculate the ratio totalMemory/maxMemory using the standard Runtime. Note this memory usage depends on heap allocation for the JVM.

      • cpuUsage

        public void cpuUsage()

        This will calculate the CPU load for the machine running PULsE. Note this is rather code-intensive, so it is recommended for use only at certain time intervals.

      • threadsAvailable

        public void threadsAvailable()
        Finds the number of threads available for calculation. This will be used by the TaskManager when allocating the ForkJoinPool for running several tasks in parallel. The number of threads is greater or equal to the number of cores
        See Also:
        TaskManager
      • getCpuUsage

        public double getCpuUsage()
      • getThreadsAvailable

        public int getThreadsAvailable()
      • getMemoryUsage

        public double getMemoryUsage()