20 System Resources
20.1 Get Resources
GET https://<HOST>:<PORT>/api/resources/get?version=0
Returns the utilization of the systems resources.
Required Permissions
-
API
-
Monitoring Mode Read Access
Request parameters
-
value
If set only the utilization of the selected resources will be returned
Type: String
Possible Values:
-
disk
-
cpu
-
ram
-
Response Body Structure
The response body is structured as Resources JSON object. A description for its fields is at section 27.34.1. For the JSON schema refer to section 27.34.2.
Example
GET http://127.0.0.1:8110/api/resources/get?version=0
HTTP Response Body
{
"disk": {
"total": 1022870155264,
"used": 735680094208
},
"cpu": 84,
"ram": {
"total": 17040580608,
"used": 10298318848
}
}