Werk #15677: downtimes: response with correct error message when host does not exist

Komponente REST API
Titel downtimes: response with correct error message when host does not exist
Datum 14.04.2023
Checkmk Edition Checkmk Raw (CRE)
Checkmk-Version 2.2.0b5 2.3.0b1
Level Kleine Änderung
Klasse Bugfix
Kompatibilität Kompatibel - benötigt kein manuelles Eingreifen

This werk introduces a fix to the endpont

  • /domain-types/downtime/collections/host

Previously when you provided a host that didn't exist the response would be

{
  "title": "Bad Request",
  "status": 400,
  "detail": "These fields have problems: host_name",
  "fields": {
    "host_name": [
      "Host 'example.com' exists, but is not monitored. Activate the configuration?"
    ]
  }
}

we now reply with

{
  "title": "Bad Request",
  "status": 400,
  "detail": "These fields have problems: host_name",
  "fields": {
    "host_name": [
      "Host not found: 'example.com'"
    ]
  }
}

Zur Liste aller Werks