monitoring
monitoring API, 5 endpoints (generated)
운영 지표, 정답(ground-truth) 성능 및 특징 분포 드리프트, 그리고 현장 GT 피드백.
GET /api/v1/monitoring/operational
GET/api/v1/monitoring/operational
운영 지표 (Prometheus)
PromQL로 평가하는 테넌트의 실시간 운영 지표입니다.
Permission: VIEW
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
model | query | string? | ||
edge | query | string? | ||
range | query | string |
Responses
| Status | Description |
|---|---|
| 200 | Successful Response (object) |
| 422 | Validation Error (HTTPValidationError) |
GET /api/v1/monitoring/trends
GET/api/v1/monitoring/trends
운영 현황 추세 (학습 큐 · GPU)
테넌트의 학습 큐와 GPU 슬롯 점유 추세입니다.
Permission: VIEW
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
range | query | string |
Responses
| Status | Description |
|---|---|
| 200 | Successful Response (object) |
| 422 | Validation Error (HTTPValidationError) |
GET /api/v1/models/{name}/performance
GET/api/v1/models/{name}/performance
GT 성능 시계열
모델의 정답(ground-truth, GT) 성능 시계열입니다.
Permission: VIEW
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
name | path | string | ✓ | |
range | query | string |
Responses
| Status | Description |
|---|---|
| 200 | Successful Response (object) |
| 422 | Validation Error (HTTPValidationError) |
GET /api/v1/models/{name}/distribution
GET/api/v1/models/{name}/distribution
특징 분포 + 드리프트
모델의 특징 분포 히스토그램과 드리프트 통계입니다.
Permission: VIEW
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
name | path | string | ✓ | |
feature | query | string? | ||
baseline | query | string |
Responses
| Status | Description |
|---|---|
| 200 | Successful Response (object) |
| 422 | Validation Error (HTTPValidationError) |
POST /api/v1/feedback
POST/api/v1/feedback
현장 GT 피드백 제출
모델에 대한 현장 정답(ground-truth, GT) 피드백을 제출합니다.
Permission: DEVELOP
Request body: application/json, FeedbackBody
| Field | Type | Required | Description |
|---|---|---|---|
model_name | string | ✓ | Model Name |
prediction_id | string? | Prediction Id | |
label | object | Label |
Responses
| Status | Description |
|---|---|
| 201 | Successful Response (object) |
| 422 | Validation Error (HTTPValidationError) |