GET

이벤트 상세 조회

/rest/analysis/event/{eventId}

특정 이벤트의 상세 정보(스택 트레이스 포함)를 조회합니다.

GET /rest/analysis/event/{eventId}

특정 이벤트의 상세 정보(스택 트레이스 포함)를 조회합니다.

Request

Query Parameters

ParameterTypeRequiredDescription
eventIdintegerYes이벤트 ID (Path)
keystringYesAPI 인증 키

Response

200 OK

{
  "eventId": 1001,
  "eventType": "stuckthread",
  "systemName": "Production",
  "serverName": "was-01",
  "message": "Thread stuck for 300s",
  "stackTrace": "java.lang.Thread.sleep(Native Method)\n...",
  "createdAt": "2026-02-27 12:00:00"
}

401 Unauthorized

{
  "error": "Unauthorized",
  "code": "UNAUTHORIZED"
}

Example

curl "https://{{manager-host}}:{{port}}/rest/analysis/event/{eventId}?key=YOUR_API_KEY"