Endpoint URL:
HTTP POST https://status.example.com/reporter/<probe_id>/<node_id>/
Where:
node_id
: The parent node of the reporting replicaprobe_id
: The parent probe of the node
Request headers:
- Add an
Authorization
header with aBasic
authentication where the password is your configuredreporter_token
. - Set the
Content-Type
toapplication/json; charset=utf-8
, and ensure you submit the request data as UTF-8.
Request data:
Adjust the request data to your replica context and send it as HTTP POST
:
{
"replica": "<replica_id>",
"interval": 30,
"load": {
"cpu": 0.30,
"ram": 0.80
}
}
Where:
replica
: The replica unique identifier (eg. the server LAN IP)interval
: The push interval (in seconds)load.cpu
: The general CPU load, from0.00
to1.00
(can be more than1.00
if the CPU is overloaded)load.ram
: The general RAM load, from0.00
to1.00
Endpoint URL:
HTTP DELETE https://status.example.com/reporter/<probe_id>/<node_id>/<replica_id>/
Where:
node_id
: The parent node of the reporting replicaprobe_id
: The parent probe of the nodereplica_id
: The replica unique identifier (eg. the server LAN IP)
Request headers:
- Add an
Authorization
header with aBasic
authentication where the password is your configuredreporter_token
.
Endpoint URL:
HTTP GET https://status.example.com/manager/announcements/
Request headers:
- Add an
Authorization
header with aBasic
authentication where the password is your configuredmanager_token
.
Endpoint URL:
HTTP POST https://status.example.com/manager/announcement/
Request headers:
- Add an
Authorization
header with aBasic
authentication where the password is your configuredmanager_token
. - Set the
Content-Type
toapplication/json; charset=utf-8
, and ensure you submit the request data as UTF-8.
Request data:
Adjust the request data to your announcement and send it as HTTP POST
:
{
"title": "<title>",
"text": "<text>"
}
Where:
title
: The title for the announcementtext
: The description text for the announcement (can be multi-line)
Endpoint URL:
HTTP DELETE https://status.example.com/manager/announcement/<announcement_id>/
Where:
announcement_id
: The announcement identifier to be removed
Request headers:
- Add an
Authorization
header with aBasic
authentication where the password is your configuredmanager_token
.
Endpoint URL:
HTTP GET https://status.example.com/manager/prober/alerts/
Request headers:
- Add an
Authorization
header with aBasic
authentication where the password is your configuredmanager_token
.
Endpoint URL:
HTTP GET https://status.example.com/manager/prober/alerts/ignored/
Request headers:
- Add an
Authorization
header with aBasic
authentication where the password is your configuredmanager_token
.
Endpoint URL:
HTTP PUT https://status.example.com/manager/prober/alerts/ignored/
Request headers:
- Add an
Authorization
header with aBasic
authentication where the password is your configuredmanager_token
. - Set the
Content-Type
toapplication/json; charset=utf-8
, and ensure you submit the request data as UTF-8.
Request data:
Adjust the request data to your announcement and send it as HTTP PUT
:
{
"reminders_seconds": 600
}
Where:
reminders_seconds
: The number of seconds during which downtime reminders should not be sent anymore (skipped)