Ausfälle abrufen

GET /vm/:vmid/monitoring/incidences

URL Variablen

Name Beschreibung
vmid Identifier der VM (fünfstellige Zahl)

Response (application/json)

{
    "status": "success",
    "requestID": "d84a138a-a940-41ed-b486-cc692cde66a5",
    "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
            },
            "LAST_7_DAYS": {
                "downtime": 35,
                "availability": 99.8605,
                "incidences": 6,
                "longest_incidence": 11,
                "average_incidence": 5.86
            },
            "LAST_14_DAYS": {
                "downtime": 1084,
                "availability": 97.8497,
                "incidences": 17,
                "longest_incidence": 750,
                "average_incidence": 63.75
            },
            "LAST_30_DAYS": {
                "downtime": 1084,
                "availability": 98.9965,
                "incidences": 17,
                "longest_incidence": 750,
                "average_incidence": 63.75
            },
            "LAST_90_DAYS": {
                "downtime": 1084,
                "availability": 99.6655,
                "incidences": 17,
                "longest_incidence": 750,
                "average_incidence": 63.75
            },
            "LAST_180_DAYS": {
                "downtime": 1084,
                "availability": 99.8328,
                "incidences": 17,
                "longest_incidence": 750,
                "average_incidence": 63.75
            }
        },
        "incidences": [
            {
                "start": "2024-01-16T13:46:02.000Z",
                "end": null,
                "downtime": 11,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-14T19:44:02.000Z",
                "end": "2024-01-14T19:53:01.000Z",
                "downtime": 9,
                "type": "VM_STOPPED"
            },
            {
                "start": "2024-01-14T19:32:01.000Z",
                "end": "2024-01-14T19:41:01.000Z",
                "downtime": 9,
                "type": "VM_STOPPED"
            },
            {
                "start": "2024-01-11T20:07:01.000Z",
                "end": "2024-01-11T20:09:00.000Z",
                "downtime": 2,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-10T17:27:02.000Z",
                "end": "2024-01-10T17:29:01.000Z",
                "downtime": 2,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-10T17:18:02.000Z",
                "end": "2024-01-10T17:20:01.000Z",
                "downtime": 2,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-07T22:27:02.000Z",
                "end": "2024-01-07T23:12:00.000Z",
                "downtime": 45,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-07T19:25:01.000Z",
                "end": "2024-01-07T19:27:00.000Z",
                "downtime": 2,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-07T19:14:01.000Z",
                "end": "2024-01-07T19:16:00.000Z",
                "downtime": 2,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-07T18:27:01.000Z",
                "end": "2024-01-07T19:07:00.000Z",
                "downtime": 40,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-07T18:21:03.000Z",
                "end": "2024-01-07T18:26:00.000Z",
                "downtime": 5,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-06T18:50:06.000Z",
                "end": "2024-01-06T21:47:04.000Z",
                "downtime": 177,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-06T00:54:04.000Z",
                "end": "2024-01-06T13:24:01.000Z",
                "downtime": 750,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-05T00:01:44.000Z",
                "end": "2024-01-05T00:09:27.000Z",
                "downtime": 8,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-03T00:25:44.000Z",
                "end": "2024-01-03T00:31:55.000Z",
                "downtime": 6,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-05T00:01:44.000Z",
                "end": "2024-01-05T00:09:27.000Z",
                "downtime": 8,
                "type": "PING_TIMEOUT"
            },
            {
                "start": "2024-01-03T00:25:44.000Z",
                "end": "2024-01-03T00:31:55.000Z",
                "downtime": 6,
                "type": "PING_TIMEOUT"
            }
        ]
    }
}

Response Enums

Response Parameter Beschreibung
type Art des erkannten Ausfalls

cURL

curl "https://live.fireapi.de/vm/:vmid/monitoring/incidences" -X GET -H "Content-Type: application/x-www-form-urlencoded" -H "X-FIRE-APIKEY: REPLACE_API-KEY"

Anfrage testen