SolarWinds · Schema

CheckDetail

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
check object
View JSON Schema on GitHub

JSON Schema

solarwinds-checkdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CheckDetail",
  "title": "CheckDetail",
  "type": "object",
  "properties": {
    "check": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Check"
        },
        {
          "type": "object",
          "properties": {
            "encryption": {
              "type": "boolean",
              "description": "Use SSL/TLS"
            },
            "port": {
              "type": "integer",
              "description": "Target port"
            },
            "sendnotificationwhendown": {
              "type": "integer",
              "description": "Number of failed tests before notification"
            },
            "notifyagainevery": {
              "type": "integer",
              "description": "Notification repeat interval"
            },
            "notifywhenbackup": {
              "type": "boolean",
              "description": "Notify when check recovers"
            }
          }
        }
      ],
      "example": "example_value"
    }
  }
}