Endpoint

/v1/support/status/

GET

List the monitoring status of all nodes: whether various kinds of monitoring connections are enabled/connected/etc.

Parameters

This resource has no parameters.

Response

Codes

Code Description
200 Return value on success

Schema

{
  "type": "array",
  "items": {
    "description": "api_node_monitoring_status",
    "type": "object",
    "properties": {
      "node_id": {
        "description": "Node Id",
        "type": "number"
      },
      "monitoring": {
        "type": "string",
        "enum": [
          "DISABLED",
          "IN_PROGRESS",
          "CONNECTED",
          "ERROR",
          "ERROR_PENDING"
        ],
        "description": "monitoring:\n * `CONNECTED` - Connection successful,\n * `DISABLED` - Service is not enabled,\n * `ERROR` - Connection has been down for 5 minutes,\n * `ERROR_PENDING` - Connection error on last attempt,\n * `IN_PROGRESS` - Status has not yet been reported"
      },
      "file_upload": {
        "type": "string",
        "enum": [
          "DISABLED",
          "IN_PROGRESS",
          "CONNECTED",
          "ERROR",
          "ERROR_PENDING"
        ],
        "description": "file_upload:\n * `CONNECTED` - Connection successful,\n * `DISABLED` - Service is not enabled,\n * `ERROR` - Connection has been down for 5 minutes,\n * `ERROR_PENDING` - Connection error on last attempt,\n * `IN_PROGRESS` - Status has not yet been reported"
      },
      "vpn_connection": {
        "type": "string",
        "enum": [
          "DISABLED",
          "IN_PROGRESS",
          "CONNECTED",
          "ERROR",
          "ERROR_PENDING"
        ],
        "description": "vpn_connection:\n * `CONNECTED` - Connection successful,\n * `DISABLED` - Service is not enabled,\n * `ERROR` - Connection has been down for 5 minutes,\n * `ERROR_PENDING` - Connection error on last attempt,\n * `IN_PROGRESS` - Status has not yet been reported"
      }
    }
  }
}