Package org.infinispan.health
Interface HostInfo
public interface HostInfo
Information about the host.
- Since:
- 9.0
- Author:
- Sebastian Ćaskawiec
-
Method Summary
Modifier and TypeMethodDescriptionlong
Gets free memory in KB.int
Returns the number of CPUs installed in the host.long
Gets total memory in KB.
-
Method Details
-
getNumberOfCpus
int getNumberOfCpus()Returns the number of CPUs installed in the host. -
getTotalMemoryKb
long getTotalMemoryKb()Gets total memory in KB. -
getFreeMemoryInKb
long getFreeMemoryInKb()Gets free memory in KB.
-