java.lang.Object
com.ibm.lang.management.MemoryUsage
This represents a snapshot of the Operating System level Memory usage statistics.
This is available on AIX, Linux, Windows and z/OS.
- Since:
- 1.7.1
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic MemoryUsagefrom(CompositeData cd) Receives aCompositeDatarepresenting aMemoryUsagelongThe amount of buffered memory in bytes.longThe amount of cached memory in bytes.longgetFree()The total amount of free physical memory in bytes.longThe amount of free swap space in bytes.longThe amount of total swap space in bytes.longThe timestamp when the usage statistics were last sampled in microseconds.longgetTotal()The total amount of usable physical memory in bytes.toString()Text description of thisMemoryUsageobject.
-
Constructor Details
-
MemoryUsage
public MemoryUsage()Creates a newMemoryUsageinstance.
-
-
Method Details
-
getTotal
public long getTotal()The total amount of usable physical memory in bytes.- Returns:
- Total physical memory in bytes or -1 if info not available.
-
getFree
public long getFree()The total amount of free physical memory in bytes.- Returns:
- Free physical memory in bytes or -1 if info not available.
-
getSwapTotal
public long getSwapTotal()The amount of total swap space in bytes.- Returns:
- Total swap space in bytes or -1 if info not available.
-
getSwapFree
public long getSwapFree()The amount of free swap space in bytes.- Returns:
- Free swap space in bytes or -1 if info not available.
-
getCached
public long getCached()The amount of cached memory in bytes. Cached memory usually consists of contents of files and block devices.- Returns:
- Cached memory in bytes or -1 if info not available.
-
getBuffered
public long getBuffered()The amount of buffered memory in bytes. Buffered memory usually consists of file metadata.- Buffered memory is not available on AIX and Windows.
- Returns:
- Buffered memory in bytes or -1 if info not available.
-
getTimestamp
public long getTimestamp()The timestamp when the usage statistics were last sampled in microseconds.- Returns:
- Timestamp in microseconds.
-
from
Receives aCompositeDatarepresenting aMemoryUsage- Parameters:
cd- ACompositeDatathat represents aMemoryUsage- Returns:
- If
cdis non-null, returns a new instance ofMemoryUsage, Ifcdisnull, returnsnull. - Throws:
IllegalArgumentException- if argumentcddoes not correspond to aMemoryUsagewith the following attributes:total(java.lang.Long)free(java.lang.Long)swapTotal(java.lang.Long)swapFree(java.lang.Long)cached(java.lang.Long)buffered(java.lang.Long)timestamp(java.lang.Long)
-
toString
Text description of thisMemoryUsageobject.- Overrides:
toStringin classObject- Returns:
- a text description of this
MemoryUsageobject.
-