5.5.3. Prometheus 환경 관리
Prometheus를 사용하여 Ceph 스토리지 클러스터를 모니터링하려면 Prometheus 내보내기를 구성하고 활성화하여 Ceph 스토리지 클러스터에 대한 메타데이터 정보를 수집할 수 있습니다.
사전 요구 사항
- 실행 중인 Red Hat Ceph Storage 3.1 클러스터
- Red Hat Ceph Storage 대시보드 설치
절차
루트
사용자로/etc/prometheus/prometheus.yml
파일을 열고 편집합니다.글로벌
섹션에서scrape_interval
및evaluation_interval
옵션을 15초로 설정합니다.예제
global: scrape_interval: 15s evaluation_interval: 15s
scrape_configs
섹션에서honor_labels: true
옵션을 추가하고타겟
및 각ceph-mgr
노드의인스턴스
옵션을 편집합니다.예제
scrape_configs: - job_name: 'node' honor_labels: true static_configs: - targets: [ 'node1.example.com:9100' ] labels: instance: "node1.example.com" - targets: ['node2.example.com:9100'] labels: instance: "node2.example.com"
참고honor_labels
옵션을 사용하면 Ceph에서 Ceph 스토리지 클러스터의 모든 노드와 관련된 레이블이 적절히 지정된 데이터를 출력할 수 있습니다. 이를 통해 Ceph에서 Prometheus를 덮어쓰지 않고 적절한인스턴스
레이블을 내보낼 수 있습니다.새 노드를 추가하려면 다음 형식으로
대상
,인스턴스
옵션을 추가하면 됩니다.예제
- targets: [ 'new-node.example.com:9100' ] labels: instance: "new-node"
참고instance
레이블은 노드의 짧은 호스트 이름인 Ceph의 OSD 메타데이터인스턴스
필드에 표시되는 항목과 일치해야 합니다. 이는 Ceph 통계와 노드의 통계의 상관 관계를 유지하는 데 도움이 됩니다.
다음 형식의
/etc/prometheus/ceph_targets.yml
파일에 Ceph 대상을 추가합니다.예제
[ { "targets": [ "cephnode1.example.com:9283" ], "labels": {} } ]
Prometheus 모듈을 활성화합니다.
# ceph mgr module enable prometheus