5.5. Ceph Manager 경고 모듈 사용
Ceph Manager 경고 모듈을 사용하여 이메일로 Red Hat Ceph Storage 클러스터 상태에 대한 간단한 경고 메시지를 보낼 수 있습니다.
이 모듈은 강력한 모니터링 솔루션이 아닙니다. Ceph 클러스터 자체의 일부로 실행된다는 사실은 ceph-mgr
데몬 실패로 인해 경고가 전송되지 않도록 근본적으로 제한됩니다. 그러나 이 모듈은 기존 모니터링 인프라가 없는 환경에 존재하는 독립 실행형 클러스터에 유용할 수 있습니다.
사전 요구 사항
- 실행 중인 Red Hat Ceph Storage 클러스터.
- Ceph Monitor 노드에 대한 루트 수준 액세스.
프로세스
Cephadm 쉘에 로그인합니다.
예
[root@host01 ~]# cephadm shell
alerts 모듈을 활성화합니다.
예
[ceph: root@host01 /]# ceph mgr module enable alerts
alerts 모듈이 활성화되었는지 확인합니다.
예
[ceph: root@host01 /]# ceph mgr module ls | more { "always_on_modules": [ "balancer", "crash", "devicehealth", "orchestrator", "pg_autoscaler", "progress", "rbd_support", "status", "telemetry", "volumes" ], "enabled_modules": [ "alerts", "cephadm", "dashboard", "iostat", "nfs", "prometheus", "restful" ]
SMTP(Simple Mail Transfer Protocol)를 구성합니다.
구문
ceph config set mgr mgr/alerts/smtp_host SMTP_SERVER ceph config set mgr mgr/alerts/smtp_destination RECEIVER_EMAIL_ADDRESS ceph config set mgr mgr/alerts/smtp_sender SENDER_EMAIL_ADDRESS
예
[ceph: root@host01 /]# ceph config set mgr mgr/alerts/smtp_host smtp.example.com [ceph: root@host01 /]# ceph config set mgr mgr/alerts/smtp_destination example@example.com [ceph: root@host01 /]# ceph config set mgr mgr/alerts/smtp_sender example2@example.com
선택 사항: 기본적으로 alerts 모듈은 SSL 및 포트 465를 사용합니다.
구문
ceph config set mgr mgr/alerts/smtp_port PORT_NUMBER
예
[ceph: root@host01 /]# ceph config set mgr mgr/alerts/smtp_port 587
경고를 구성하는 동안
smtp_ssl
매개변수를 설정하지 마십시오.SMTP 서버에 인증합니다.
구문
ceph config set mgr mgr/alerts/smtp_user USERNAME ceph config set mgr mgr/alerts/smtp_password PASSWORD
예
[ceph: root@host01 /]# ceph config set mgr mgr/alerts/smtp_user admin1234 [ceph: root@host01 /]# ceph config set mgr mgr/alerts/smtp_password admin1234
선택 사항: 기본적으로 이름에 따라 SMTP는
Ceph
입니다.이를 변경하려면
smtp_from_name
매개변수를 설정합니다.구문
ceph config set mgr mgr/alerts/smtp_from_name CLUSTER_NAME
예
[ceph: root@host01 /]# ceph config set mgr mgr/alerts/smtp_from_name 'Ceph Cluster Test'
선택 사항: 기본적으로 alerts 모듈은 1분마다 스토리지 클러스터의 상태를 확인하고 클러스터 상태가 변경될 때 메시지를 보냅니다. 빈도를 변경하려면
interval
매개변수를 설정합니다.구문
ceph config set mgr mgr/alerts/interval INTERVAL
예
[ceph: root@host01 /]# ceph config set mgr mgr/alerts/interval "5m"
이 예에서 간격은 5분으로 설정됩니다.
선택 사항: 즉시 경고를 보냅니다.
예
[ceph: root@host01 /]# ceph alerts send
추가 리소스
- Ceph 상태 메시지에 대한 자세한 내용은 Red Hat Ceph Storage 문제 해결 가이드에서 Ceph 클러스터 의 상태 메시지 섹션을 참조하십시오.