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` - MONITORING_CONNECTION_STATE_CONNECTED,\n * `DISABLED` - MONITORING_CONNECTION_STATE_DISABLED,\n * `ERROR` - MONITORING_CONNECTION_STATE_ERROR,\n * `ERROR_PENDING` - MONITORING_CONNECTION_STATE_ERROR_PENDING,\n * `IN_PROGRESS` - MONITORING_CONNECTION_STATE_IN_PROGRESS"
      },
      "file_upload": {
        "type": "string",
        "enum": [
          "DISABLED",
          "IN_PROGRESS",
          "CONNECTED",
          "ERROR",
          "ERROR_PENDING"
        ],
        "description": "file_upload:\n * `CONNECTED` - MONITORING_CONNECTION_STATE_CONNECTED,\n * `DISABLED` - MONITORING_CONNECTION_STATE_DISABLED,\n * `ERROR` - MONITORING_CONNECTION_STATE_ERROR,\n * `ERROR_PENDING` - MONITORING_CONNECTION_STATE_ERROR_PENDING,\n * `IN_PROGRESS` - MONITORING_CONNECTION_STATE_IN_PROGRESS"
      },
      "vpn_connection": {
        "type": "string",
        "enum": [
          "DISABLED",
          "IN_PROGRESS",
          "CONNECTED",
          "ERROR",
          "ERROR_PENDING"
        ],
        "description": "vpn_connection:\n * `CONNECTED` - MONITORING_CONNECTION_STATE_CONNECTED,\n * `DISABLED` - MONITORING_CONNECTION_STATE_DISABLED,\n * `ERROR` - MONITORING_CONNECTION_STATE_ERROR,\n * `ERROR_PENDING` - MONITORING_CONNECTION_STATE_ERROR_PENDING,\n * `IN_PROGRESS` - MONITORING_CONNECTION_STATE_IN_PROGRESS"
      }
    }
  }
}