Up
get /about/system-status
Get a list of requests (getMonitorRequests)
Returns a list of system-level information.
Major operating systems (Linux, Windows and MacOX) are supported out of the box.
Return type
Example data
Content-Type: application/json
"{\n \"metrics\": {\n \"metric\": [\n {\n \"available\": true,\n \"category\": \"FILE_SYSTEM\",\n \"description\": \"Partition [/dev/nvme0n1p2] total space\",\n \"identifier\": \"/dev/nvme0n1p2\",\n \"name\": \"PARTITION_TOTAL\",\n \"priority\": 507,\n \"unit\": \"bytes\",\n \"value\": 99614720\n },\n (...)\n"
Example data
Content-Type: application/xml
"\n \n 99614720\n true\n Partition [/dev/nvme0n1p2] total space\n PARTITION_TOTAL\n bytes\n FILE_SYSTEM\n /dev/nvme0n1p2\n 507\n \n (...)\n"
Produces
This API call produces the following media types according to the request header;
the media type will be conveyed by the response header.
text/html
application/xml
application/json
Responses
200
OK
Metrics
Example data
Content-Type: application/json
{
"metrics": {
"metric": [
{
"available": true,
"category": "FILE_SYSTEM",
"description": "Partition [/dev/nvme0n1p2] total space",
"identifier": "/dev/nvme0n1p2",
"name": "PARTITION_TOTAL",
"priority": 507,
"unit": "bytes",
"value": 99614720
},
(...)
Example data
Content-Type: application/xml
99614720
true
Partition [/dev/nvme0n1p2] total space
PARTITION_TOTAL
bytes
FILE_SYSTEM
/dev/nvme0n1p2
507
(...)