API Documentation
Platform
- GETGet API info
- Alert Policies
- Alert Rules
Uptime
List monitors
Get a paginated list of monitors
curl --request GET \
--url https://api.phare.io/uptime/monitors \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": 1,
"project_id": 1,
"status": "fetching",
"paused": true,
"response_time": 123,
"alert_policy_id": 1,
"name": "Website",
"protocol": "http",
"request": {
"method": "GET",
"url": "https://docs.phare.io/introduction",
"keyword": "pong"
},
"interval": 60,
"timeout": 7000,
"incident_confirmations": 1,
"recovery_confirmations": 1,
"regions": [
"as-ind-bom"
],
"last_checked_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"current_page": 2,
"from": 11,
"to": 20,
"per_page": 100,
"path": "https://api.phare.io/{resource}?page=2"
},
"links": {
"first": "https://api.phare.io/{resource}?page=2",
"last": "https://api.phare.io/{resource}?page=10",
"prev": "https://api.phare.io/{resource}?page=1",
"next": "https://api.phare.io/{resource}?page=1"
}
}
Authorizations
Use a user token to access authenticated routes. The token must be specified in the Authorization HTTP header with the following format 'Authorization: Bearer <token>'.
Query Parameters
Page number to show
1
Number of ressources to return per page
1 <= x <= 100
20
Response
Associated alert policy ID
1
Monitor name
"Website"
http
, tcp
Monitoring request, depends of the chosen protocol
Monitoring interval in seconds
30
, 60
, 120
, 180
, 300
, 600
, 900
, 1800
, 3600
60
Monitoring timeout in milliseconds
1000
, 2000
, 3000
, 4000
, 5000
, 6000
, 7000
, 8000
, 9000
, 10000
, 15000
, 20000
, 25000
, 30000
7000
Number of uninterrupted failed checks required to create an incident
1
, 2
, 3
, 4
, 5
1
Number of uninterrupted successful checks required to resolve an incident
1
, 2
, 3
, 4
, 5
1
List of regions where monitoring checks are performed
as-ind-bom
, as-jpn-nrt
, as-sgp-sin
, eu-deu-muc
, eu-gbr-lhr
, eu-swe-arn
, na-mex-mex
, na-usa-pdx
, na-usa-ric
Monitor ID
1
Parent project ID
1
fetching
, online
, offline
, partial
Whether the monitor is currently paused
true
Rolling average response time of the last 10 requests, in milliseconds
123
Date of the last monitoring check
Date of creation for the entity
Date of last update for the entity
Links for pagination
Was this page helpful?
curl --request GET \
--url https://api.phare.io/uptime/monitors \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": 1,
"project_id": 1,
"status": "fetching",
"paused": true,
"response_time": 123,
"alert_policy_id": 1,
"name": "Website",
"protocol": "http",
"request": {
"method": "GET",
"url": "https://docs.phare.io/introduction",
"keyword": "pong"
},
"interval": 60,
"timeout": 7000,
"incident_confirmations": 1,
"recovery_confirmations": 1,
"regions": [
"as-ind-bom"
],
"last_checked_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"current_page": 2,
"from": 11,
"to": 20,
"per_page": 100,
"path": "https://api.phare.io/{resource}?page=2"
},
"links": {
"first": "https://api.phare.io/{resource}?page=2",
"last": "https://api.phare.io/{resource}?page=10",
"prev": "https://api.phare.io/{resource}?page=1",
"next": "https://api.phare.io/{resource}?page=1"
}
}