alerts
list alerts
get started
evaluations
- templates
- evaluations
- groups
alerts
list alerts
list all alerts
GET
/
alerts
curl --request GET \
--url https://api.fixa.dev/v1/alerts \
--header 'Authorization: Bearer <token>'
{
"success": true,
"alerts": [
{
"id": "<string>",
"type": "latency",
"details": {
"lookbackPeriod": {
"label": "<string>",
"value": 123
},
"cooldownPeriod": {
"label": "<string>",
"value": 123
},
"lastAlerted": "2023-11-07T05:31:56Z",
"percentile": "p50",
"threshold": 123
},
"savedSearchId": "<string>",
"slackNames": [],
"ownerId": "<string>"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Alerts retrieved successfully
Unique identifier for the alert
Available options:
latency
, evalSet
Last time this alert was triggered
Percentile threshold for latency
Available options:
p50
, p90
, p95
Latency threshold in milliseconds
ID of the associated saved search
Slack usernames to notify
ID of the alert owner
curl --request GET \
--url https://api.fixa.dev/v1/alerts \
--header 'Authorization: Bearer <token>'
{
"success": true,
"alerts": [
{
"id": "<string>",
"type": "latency",
"details": {
"lookbackPeriod": {
"label": "<string>",
"value": 123
},
"cooldownPeriod": {
"label": "<string>",
"value": 123
},
"lastAlerted": "2023-11-07T05:31:56Z",
"percentile": "p50",
"threshold": 123
},
"savedSearchId": "<string>",
"slackNames": [],
"ownerId": "<string>"
}
]
}