Package pulse.util
Class ResourceMonitor
- java.lang.Object
-
- pulse.util.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 Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
cpuUsage()
This will calculate the CPU load for the machine runningPULsE
.double
getCpuUsage()
static ResourceMonitor
getInstance()
double
getMemoryUsage()
int
getThreadsAvailable()
void
memoryUsage()
This will calculate the ratiototalMemory/maxMemory
using the standardRuntime
.void
threadsAvailable()
Finds the number of threads available for calculation.void
update()
-
-
-
Method Detail
-
update
public void update()
-
memoryUsage
public void memoryUsage()
This will calculate the ratio
totalMemory/maxMemory
using the standardRuntime
. 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 theTaskManager
when allocating theForkJoinPool
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()
-
getInstance
public static ResourceMonitor getInstance()
-
-