Get alert
GET
Purpose: get a single alert view. This endpoint always includes the metric list.
Parameters
alertId: required path parameterat: optional date-time; point-in-time selection. Returns404if the alert was not active then
Response
200 OK
{
"id": "alert-123",
"lastSeenAt": "2025-11-13T12:34:56Z",
"firstSeenAt": "2025-11-13T10:00:00Z",
"active": true,
"impact": "medium",
"activeNodes": 2,
"activeMetrics": 3,
"score": 1.2,
"learningStatus": 0,
"metrics": [
{
"nodeId": 10,
"nodeName": "Order Service",
"statTypeId": "3ef542f1-2c80-4c83-ae06-8741857ed78a",
"statTypeName": "CPU Usage",
"systemId": 101,
"systemName": "Prod Cluster",
"score": { "adjusted": 1.1, "contribution": 0.6 },
"learningStatus": 0,
"severity": "orange"
}
]
}
Errors
404: alert not found or not active for the selected time
Examples
GET /v1/alerts/alert-123GET /v1/alerts/alert-123?at=2025-11-13T12:00:00Z