CLI REST-API

show-alarms

show-alarms [option]
The "show-alarms" command lists all currently active alarms.
See "monitor-alarms" for listing the active alarms and keep updating the output
continously.

Specifying "--all" will not only output the alarms but all other triggered events, too.

RESTAPI: The data can be passed in the body like this:
{
    "parameters": {
        "show-all": true
    }
}
NameValueDescriptionExample
alloutput all other triggered events
See also:
show: show system states.
monitor: monitor system states.
/status/notification/events: events

REST-API Support:


This command is supported by the REST API:

Method: PUT
URL: /api/show-alarms
Body:
{
    "parameters": {
        "show-all": [boolean]
    }
}

Example using curl:
curl -X PUT /api/show-alarms -d 
"{
    \"parameters\": {
        \"show-all\": true
    }
}"