

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

# AWS DMS 이벤트 보기
<a name="CHAP_Monitoring.View.dms.events"></a>

 AWS DMS 리소스에 대한 다음 이벤트 정보를 검색할 수 있습니다.
+ 리소스 이름
+ 리소스 유형
+ 이벤트의 날짜 및 시간
+ 이벤트 메시지 요약

지난 7일간의 이벤트를 보여주는 AWS 관리 콘솔의 이벤트 탭에서 이벤트에 액세스할 수 있습니다. `[describe-events](https://docs.aws.amazon.com/cli/latest/reference/dms/describe-events.html)` AWS CLI 명령 또는 `[DescribeEvents](https://docs.aws.amazon.com/dms/latest/APIReference/API_DescribeEvents.html)` DMS API 작업을 사용하여 이벤트를 검색할 수도 있습니다. AWS CLI 또는 DMS API를 사용하여 이벤트를 보는 경우 최대 지난 14일 동안의 이벤트를 검색할 수 있습니다.

**참고**  
더 오랜 시간 동안 이벤트를 저장해야 하는 경우 이벤트를 EventBridge로 보내고 AWS DMS 이벤트 세부 정보를 다른 서비스에 전송하여 저장할 수 있습니다. 자세한 내용은 [AWS DMS에 대해 Amazon EventBridge 이벤트 사용하기](https://docs.aws.amazon.com/dms/latest/userguide/CHAP_EventBridge.html#CHAP_EventBridge.Rule)를 참조하세요.  
 AWS DMS 이벤트에 대한 설명은 [AWS DMS 이벤트 범주 및 이벤트 메시지를](https://docs.aws.amazon.com/dms/latest/userguide/CHAP_EventBridge.html#EventBridge.Messages) 참조하세요.

## DMS 콘솔
<a name="CHAP_Monitoring.View.dms.events.console"></a>

DMS 콘솔에서 지난 7일 동안의 모든 AWS DMS 이벤트를 보려면:

1.  AWS Management Console에 로그인하고 https://console.aws.amazon.com/dms/v2 DMS 콘솔을 엽니다.

1. 탐색 페이지에서 **이벤트**를 선택합니다.

1. 검색어를 입력하여 결과를 필터링합니다.

   다음 예에서는 **replication-task** 문자로 필터링된 이벤트 목록을 보여줍니다.  
![DMS 이벤트 보기](http://docs.aws.amazon.com/ko_kr/dms/latest/userguide/images/AWS_dms_view_events.png)

## AWS CLI
<a name="CHAP_Monitoring.View.dms.events.cli"></a>

지난 한 시간 동안 생성된 모든 이벤트를 보려면 파라미터 없이 `[describe-events](https://docs.aws.amazon.com/cli/latest/reference/dms/describe-events.html)` AWS DMS CLI 명령을 실행합니다.

```
aws dms describe-events
```

다음 샘플 출력은 복제 작업이 수정되었음을 보여줍니다.

```
{
    "Events": [
        {
            "SourceIdentifier": "dms-task",
            "SourceType": "replication-task",
            "Message": "Replication task has modified.",
            "EventCategories": [
                "configuration change"
            ],
            "Date": "2025-04-09T12:48:22.231000-07:00"
        }
    ]
}
```

지난 14일(20160분) 동안의 모든 AWS DMS 이벤트를 보려면 `[describe-events](https://docs.aws.amazon.com/cli/latest/reference/dms/describe-events.html)` AWS CLI 명령을 실행하고 `--duration` 파라미터를 로 설정합니다**20160**.

```
aws dms describe-events --duration 20160
```

다음 예에서는 복제 `dms-replication-instance`에 대한 지정된 시간 범위의 이벤트를 보여 줍니다.

```
aws dms describe-events \
    --source-identifier dms-replication-instance \ 
    --source-type replication-instance \
    --start-time 2025-04-10T22:00Z \
    --end-time 2025-04-12T23:59Z
```

다음 샘플 출력은 복제 인스턴스의 상태를 보여줍니다.

```
{
    "Events": [
        {
            "SourceIdentifier": "dms-replication-instance",
            "SourceType": "replication-instance",
            "Message": "Replication application shutdown",
            "EventCategories": [],
            "Date": "2025-04-12T03:11:43.270000-07:00"
        },
        {
            "SourceIdentifier": "dms-replication-instance",
            "SourceType": "replication-instance",
            "Message": "Replication application restarted",
            "EventCategories": [],
            "Date": "2025-04-12T03:19:58.214000-07:00"
        }
    ]
}
```

## AWS DMS API
<a name="CHAP_Monitoring.View.dms.events.api"></a>

`[DescribeEvents](https://docs.aws.amazon.com/dms/latest/APIReference/API_DescribeEvents.html)` DMS API 작업을 실행하고 `--duration` 파라미터를 로 설정하여 지난 14일 동안의 모든 AWS DMS 인스턴스 이벤트를 볼 수 있습니다**20160**.