API Model
Memory Report
It represent the memory usage of the Java Runtime
| Field | Type | Mandatory | Meaning |
|---|---|---|---|
| free | long | yes | how much of the current allocated memory is still free |
| total | long | yes | total amount of allocated memory |
| max | long | yes | maximum allocable memory |
The server will throw an out of memory error when [max]-[total]+[free]=0
Example
{
"total:": 198103040,
"max:": 1555431424,
"free:": 85147464
}