curl --request GET \
--url https://api.example.com/metrics/{metric_id}/monitor/evaluations \
--header 'Authorization: Bearer <token>'{
"evaluations": [
{
"status": "<string>",
"value": 123,
"created_at": "<string>"
}
],
"total": 123,
"limit": 123,
"offset": 123,
"has_more": true
}Returns historical evaluation results for the monitor attached to this metric (e.g. threshold checks over time).
curl --request GET \
--url https://api.example.com/metrics/{metric_id}/monitor/evaluations \
--header 'Authorization: Bearer <token>'{
"evaluations": [
{
"status": "<string>",
"value": 123,
"created_at": "<string>"
}
],
"total": 123,
"limit": 123,
"offset": 123,
"has_more": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Metric whose monitor evaluations to list.
Page size.
1 <= x <= 200Pagination offset.
x >= 0