

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# Amazon OpenSearch Service의 알림
<a name="managedomains-notifications"></a>

Amazon OpenSearch Service의 알림에는 도메인의 성능 및 상태에 대한 중요한 정보가 포함되어 있습니다. OpenSearch Service는 서비스 소프트웨어 업데이트, 자동 조정 기능 향상, 클러스터 상태 이벤트, 도메인 오류에 대해 알려줍니다. OpenSearch 및 Elasticsearch OSS의 모든 버전에서 알림을 사용할 수 있습니다.

OpenSearch Service 콘솔의 **Notifications**(알림) 패널에서 이러한 알림을 확인할 수 있습니다. OpenSearch Service에 대한 모든 알림은 [Amazon EventBridge](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-what-is.html)에도 표시됩니다. 알림 및 샘플 이벤트의 전체 목록은 [Amazon EventBridge를 사용하여 OpenSearch Service 이벤트 모니터링](monitoring-events.md) 섹션을 참조하세요.

## 알림 시작하기
<a name="managedomains-notifications-start"></a>

도메인을 만들 때 알림이 자동으로 활성화됩니다. OpenSearch Service 콘솔의 **알림(Notifications)** 패널로 이동하여 알림을 모니터링 및 확인합니다. 각 알림에는 게시된 시간, 관련 도메인, 심각도 및 상태 수준, 간단한 설명 등의 정보가 포함됩니다. 콘솔에서 최대 90일 동안의 기간별 알림을 볼 수 있습니다.

[**알림(Notifications)**] 패널에 액세스하거나 알림을 승인한 후, `es:ListNotificationsV2` 또는 `es:UpdateNotificationStatus`를 수행할 권한이 없다는 오류 메시지가 표시될 수 있습니다. 이 문제를 해결하려면 IAM에서 사용자 또는 역할에 다음 권한을 부여합니다.

------
#### [ JSON ]

****  

```
{
  "Version":"2012-10-17",		 	 	 
  "Statement": [{
    "Effect": "Allow",
    "Action": [
      "es:DescribeDomain",
      "es:ListDomainNames"
    ],
    "Resource": "arn:aws:es:*:111122223333:domain/*"
  }]
}
```

------

IAM 콘솔에서 무시해도 괜찮은 오류(‘IAM이 하나 이상의 작업을 인식하지 못합니다(IAM does not recognize one or more actions)’)가 발생합니다. 또한 `es:UpdateNotificationStatus` 작업을 특정 도메인으로 제한할 수 있습니다. 자세한 내용은 [정책 요소 참조](ac.md#ac-reference)를 참조하세요.

## 알림 심각도
<a name="managedomains-notifications-severities"></a>

OpenSearch Service의 알림은 이미 취한 조치 또는 도메인의 운영과 관련한 *정보* 알림이거나 필수 보안 패치를 적용하는 등의 특정한 조치를 요하는 *조치 가능* 알림입니다. 각 알림에는 심각도(`Informational`, `Low`, `Medium`, `High` 또는 `Critical`)가 연결되어 있습니다. 다음 표에는 각 심각도가 요약되어 있습니다.


| 심각도 | 설명 | 예제 | 
| --- | --- | --- | 
| Informational |  도메인 운영과 관련된 정보입니다.  |  [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/ko_kr/opensearch-service/latest/developerguide/managedomains-notifications.html)  | 
| Low |  권장되는 작업이지만 조치를 하지 않을 경우 도메인 가용성이나 성능에 부정적인 영향을 미치지 않습니다.  |  [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/ko_kr/opensearch-service/latest/developerguide/managedomains-notifications.html)  | 
| Medium |  권장 조치를 하지 않을 경우 영향이 있을 수 있지만 조치를 할 수 있는 기간이 연장됩니다.  |  [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/ko_kr/opensearch-service/latest/developerguide/managedomains-notifications.html)  | 
| High |  악영향을 피하기 위해서는 긴급한 조치가 필요합니다.  |  [\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/ko_kr/opensearch-service/latest/developerguide/managedomains-notifications.html)  | 
| Critical |  악영향을 피하거나 복구하려면 즉각적인 조치가 필요합니다.  | 현재 사용할 수 없음 | 

## 샘플 EventBridge 이벤트
<a name="managedomains-notifications-cloudwatch"></a>

다음 예제에서는 Amazon EventBridge로 전송된 OpenSearch Service 알림 이벤트를 보여줍니다. 업데이트는 선택 사항이기 때문에 알림의 심각도는 `Informational`입니다.

```
{
  "version": "0",
  "id": "01234567-0123-0123-0123-012345678901",
  "detail-type": "Amazon OpenSearch Service Software Update Notification",
  "source": "aws.es",
  "account": "123456789012",
  "time": "2016-11-01T13:12:22Z",
  "region": "us-east-1",
  "resources": ["arn:aws:es:us-east-1:123456789012:domain/test-domain"],
  "detail": {
    "event": "Service Software Update",
    "status": "Available",
    "severity": "Informational",
    "description": "Service software update [R20200330-p1] available."
  }
}
```