v1

latestOpenAPI 3.0.3raw.githubusercontent.com2025-01-0926145.0 KB
KVM

Get monitoring incidences (24fire+)

Retrieve detected outages and downtime stats. Requires 24fire+.

get/api/kvm/{internal_id}/monitoring/incidences

Path parameters

internal_idstring required

internal_id of the KVM server

Response

Monitoring incidences data

object required

Example response

{
  "status": "success",
  "message": "monitoring incidences are listed below",
  "data": {
    "statistic": {
      "LAST_24_HOURS": {
        "downtime": 11,
        "availability": 99.6885,
        "incidences": 1,
        "longest_incidence": 11,
        "average_incidence": 11.21
      }
    },
    "incidences": [
      {
        "start": "2024-01-16T13:46:02.000Z",
        "end": null,
        "downtime": 11,
        "type": "PING_TIMEOUT"
      }
    ]
  }
}