JSON file format

  • Freigeben Version: Australia
  • Aktualisiert 12. März 2026
  • 1 Minute Lesedauer
  • The JSON file should contain an array of monitor objects, either directly or wrapped in a checks or monitors property.

    Direct array

    [
      {
        "name": "API Health Check",
        "method": "GET",
        "cmdb_ci": "sys_id_of_http_endpoint",
        "interval": 5,
        "locations": ["location_sys_id_1"],
        "enabled": true,
        "parent_service_sys_id": "service_sys_id",
        "support_group_sys_id": "group_sys_id"
      }
    ]

    Wrapped in object

    {
      "checks": [
        {
          "name": "API Health Check",
          "method": "GET",
          "cmdb_ci": "sys_id_of_http_endpoint",
          ...
        }
      ]
    }