-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fourth Korean localization work for release-1.14
This commit is the fourth Korean l10n work for release-1.14. Change List * Translate concepts/overview/object-management-kubectl/declarative-config in Korean (#14285) * translate cron-jobs.md to korean + add _index.md (#14024) * ko: update outdated files in dev-1.14-ko.4 #14207 (#14347) * Translate standardized glossary Tag Workload in Korean (#14208) * translate to content/ko/docs/concepts/cluster-administration/controll… (#14234) * ko: update concepts, contribute, tasks in dev-1.14-ko.4 #14207 (#14502) * ko: update cheatsheet in dev-1.14-ko.4 (#14515) Co-Authored-By: Seokho <[email protected]> Co-Authored-By: Yoon <[email protected]> Co-Authored-By: Woojin Na(Eddie) <[email protected]> Co-Authored-By: Kim Young Dae <[email protected]> Co-Authored-by: June Yi <[email protected]> Co-Authored-by: Claudia J. Kang <[email protected]>
- Loading branch information
1 parent
1054269
commit e326e58
Showing
25 changed files
with
1,723 additions
and
383 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
content/ko/docs/concepts/cluster-administration/controller-metrics.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
title: 컨트롤러 관리자 메트릭 | ||
content_template: templates/concept | ||
weight: 100 | ||
--- | ||
|
||
{{% capture overview %}} | ||
컨트롤러 관리자 메트릭은 컨트롤러 관리자의 성능과 상태에 대한 | ||
중요한 통찰을 제공한다. | ||
|
||
{{% /capture %}} | ||
|
||
{{% capture body %}} | ||
## 컨트롤러 관리자 메트릭은 무엇인가 | ||
|
||
컨트롤러 관리자 메트릭은 컨트롤러 관리자의 성능과 상태에 대한 중요한 통찰을 제공한다. | ||
메트릭은 go_routine count와 같은 일반적인 Go 언어 런타임 메트릭과 | ||
etcd 요청 대기 시간 또는 클라우드 제공자(AWS, GCE, OpenStack) API 대기 시간과 같이 클러스터 상태를 | ||
측정할 수 있는 컨트롤러 특징적 메트릭을 포함한다. | ||
|
||
쿠버네티스 1.7 부터, GCE, AWS, Vsphere 그리고 OpenStack의 저장소 작업에 대한 자세한 클라우드 제공자 메트릭을 사용할 수 있다. | ||
이 메트릭은 영구 볼륨 작업의 상태 감시에 사용될 수 있다. | ||
|
||
예를 들어, GCE의 경우 다음과 같은 메트릭이 호출된다: | ||
|
||
``` | ||
cloudprovider_gce_api_request_duration_seconds { request = "instance_list"} | ||
cloudprovider_gce_api_request_duration_seconds { request = "disk_insert"} | ||
cloudprovider_gce_api_request_duration_seconds { request = "disk_delete"} | ||
cloudprovider_gce_api_request_duration_seconds { request = "attach_disk"} | ||
cloudprovider_gce_api_request_duration_seconds { request = "detach_disk"} | ||
cloudprovider_gce_api_request_duration_seconds { request = "list_disk"} | ||
``` | ||
|
||
|
||
|
||
## 구성 | ||
|
||
|
||
클러스터에서 컨트롤러-관리자 메트릭은 컨트롤러-관리자가 실행되고 있는 호스트의 `http://localhost:10252/metrics`를 통해서 | ||
이용 가능하다. | ||
|
||
메트릭은 [프로메테우스 형식](https://prometheus.io/docs/instrumenting/exposition_formats/)에서 나오고, 사람이 읽을 수 있다. | ||
|
||
운영 환경에서는 주기적으로 메트릭을 모으고, 일종의 시계열 데이터베이스로 만들기 위해, | ||
프로메테우스 설정이나 다른 메트릭 수집기를 구성할 것이다. | ||
|
||
{{% /capture %}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.