경고 관리 경고 API
Tier: Free, Premium, Ultimate
Offering: GitLab.com, Self-Managed, GitLab Dedicated
경고 관리 경고 API는 메트릭 이미지로 제한됩니다. 더 많은 API 엔드포인트를 보려면 GraphQL API를 참조하세요.
메트릭 이미지 업로드
POST /projects/:id/alert_management_alerts/:alert_iid/metric_images
속성 | 유형 | 필수 | 설명 |
---|---|---|---|
id
| integer/string | 예 | 프로젝트의 ID 또는 URL 인코딩 된 경로. |
alert_iid
| integer | 예 | 프로젝트의 경고의 내부 ID. |
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" --form 'file=@/path/to/file.png' \
--form 'url=http://example.com' --form 'url_text=Example website' "https://gitlab.example.com/api/v4/projects/5/alert_management_alerts/93/metric_images"
응답 예시:
{
"id": 17,
"created_at": "2020-11-12T20:07:58.156Z",
"filename": "sample_2054",
"file_path": "/uploads/-/system/alert_metric_image/file/17/sample_2054.png",
"url": "https://example.com/metric",
"url_text": "An example metric"
}
메트릭 이미지 목록
GET /projects/:id/alert_management_alerts/:alert_iid/metric_images
속성 | 유형 | 필수 | 설명 |
---|---|---|---|
id
| integer/string | 예 | 프로젝트의 ID 또는 URL 인코딩 된 경로. |
alert_iid
| integer | 예 | 프로젝트의 경고의 내부 ID. |
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/alert_management_alerts/93/metric_images"
응답 예시:
[
{
"id": 17,
"created_at": "2020-11-12T20:07:58.156Z",
"filename": "sample_2054",
"file_path": "/uploads/-/system/alert_metric_image/file/17/sample_2054.png",
"url": "https://example.com/metric",
"url_text": "An example metric"
},
{
"id": 18,
"created_at": "2020-11-12T20:14:26.441Z",
"filename": "sample_2054",
"file_path": "/uploads/-/system/alert_metric_image/file/18/sample_2054.png",
"url": "https://example.com/metric",
"url_text": "An example metric"
}
]
메트릭 이미지 업데이트
PUT /projects/:id/alert_management_alerts/:alert_iid/metric_images/:image_id
속성 | 유형 | 필수 | 설명 |
---|---|---|---|
id
| integer/string | 예 | 프로젝트의 ID 또는 URL 인코딩 된 경로. |
alert_iid
| integer | 예 | 프로젝트의 경고의 내부 ID. |
image_id
| integer | 예 | 이미지의 ID. |
url
| string | 아니요 | 더 많은 메트릭 정보를 보기 위한 URL. |
url_text
| string | 아니요 | 이미지 또는 URL에 대한 설명. |
curl --header "PRIVATE-TOKEN: <your_access_token>" --request PUT --form 'url=http://example.com' --form 'url_text=Example website' "https://gitlab.example.com/api/v4/projects/5/alert_management_alerts/93/metric_images/1"
응답 예시:
{
"id": 23,
"created_at": "2020-11-13T00:06:18.084Z",
"filename": "file.png",
"file_path": "/uploads/-/system/alert_metric_image/file/23/file.png",
"url": "https://example.com/metric",
"url_text": "An example metric"
}
메트릭 이미지 삭제
DELETE /projects/:id/alert_management_alerts/:alert_iid/metric_images/:image_id
속성 | 유형 | 필수 | 설명 |
---|---|---|---|
id
| integer/string | 예 | 프로젝트의 ID 또는 URL 인코딩 된 경로. |
alert_iid
| integer | 예 | 프로젝트의 경고의 내부 ID. |
image_id
| integer | 예 | 이미지의 ID. |
curl --header "PRIVATE-TOKEN: <your_access_token>" --request DELETE "https://gitlab.example.com/api/v4/projects/5/alert_management_alerts/93/metric_images/1"
다음 상태 코드를 반환할 수 있습니다:
-
204 No Content
: 이미지가 성공적으로 삭제된 경우. -
422 Unprocessable
: 이미지를 삭제할 수 없는 경우.