인프라 상태 및 큐 지표를 조회하는 엔드포인트입니다. 운영 모니터링용으로 사용하며 x-admin-secret-key 헤더 인증이 필요합니다. (기업별로 응답이 달라지지 않으므로 기업 헤더는 요구하지 않습니다.)
/status| Name | Required | Value |
|---|---|---|
| x-admin-secret-key | ✅ | 내부 어드민 시크릿 키 |
{
"timestamp": "2025-11-20T12:34:56.789Z",
"mongo": { "status": "up" },
"redis": {
"status": "up",
"latencyMs": 1.23,
"mode": "ready"
},
"queues": {
"deployment": {
"waiting": 0,
"active": 1,
"completed": 24,
"failed": 0,
"delayed": 0,
"paused": 0
},
"minting": { "...": "..." },
"webhook": { "...": "..." }
}
}
mongo.status: up 혹은 downredis.latencyMs: PING 왕복 시간(ms)queues 항목은 Bull getJobCounts() 결과이며, waiting, active, completed, failed, delayed 등을 포함합니다.주의:
/status는 인증이 필요한 내부 모니터링 엔드포인트입니다. 인프라 헬스체크 용도로는 여전히/health(공개)를 사용하세요.