Contains the data provided by FusionReactor memorysummary log files.
Column Name | Data Type | Unique | Nullable | Description |
---|---|---|---|---|
ID | bigint | x | The primary key column | |
SERVER | smallint | The server ID as stored in the ServerMap | ||
DT | bigint | The number of milliseconds since the epoch. Timezone adjustments can be made with the timezone attribute of the DataCollector that provided the data. | ||
VERSION | smallint | The version of the memory log files being imported. | ||
SRVSTARTTS | bigint | The time (in milliseconds since the epoch) that the server last came online. | ||
HEAPPCT | smallint | The amount of heap memory that can be used for memory management (percentage) | ||
HEAPUSED | bigint | The amount of heap memory used (bytes) | ||
HEAPCOMMITTED | bigint | The amount of memory that can be used for the heap by the Java Virtual Machine (bytes) | ||
HEAPINIT | bigint | The amount of heap memory that the Java Virtual Machine initially requests from the operating system (bytes) | ||
HEAPMAX | bigint | The amount of heap memory that can be used for the heap by the Java Virtual Machine (bytes) | ||
NONHEAPPCT | smallint | The amount of non heap memory that can be used for memory management (percentage) | ||
NONHEAPUSED | bigint | The amount of non heap memory used (bytes) | ||
NONHEAPCOMMITTED | bigint | The amount of non heap memory that can be used for the heap by the Java Virtual Machine (bytes) | ||
NONHEAPINIT | bigint | The amount of non heap memory that the Java Virtual Machine initially requests from the operating system (bytes) | ||
NONHEAPMAX | bigint | The amount of non heap memory that can be used for memory management (bytes) | ||
PENDINGFINALIZATIONCOUNT | bigint | The number of objects waiting to have their finalize method called. This is the method that is called before the object is destroyed. | ||
RATE | real | x |