

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

# Neptune 이벤트 보기
<a name="viewing-events"></a>

각 Neptune 이벤트에 대해 다음 정보를 볼 수 있습니다.
+ 리소스 이름
+ 리소스 유형
+ 이벤트 범주
+ 이벤트 시간
+ 이벤트를 설명하는 요약 메시지

 AWS 관리 콘솔의 다음 부분에서 이벤트에 액세스할 수 있습니다.
+ Neptune 콘솔 탐색 창의 **이벤트** 페이지에는 지난 24시간 동안의 이벤트가 표시됩니다.
+ DB 클러스터 또는 DB 인스턴스 세부 정보 페이지의 **로그 및 이벤트** 탭에 있는 **최근** 이벤트 테이블로, 최대 지난 14일 동안의 이벤트를 표시할 수 있습니다.

[describe-events](https://docs.aws.amazon.com/cli/latest/reference/neptune/describe-events.html) AWS CLI 명령 또는 [DescribeEvents](https://docs.aws.amazon.com/neptune/latest/apiref/API_DescribeEvents.html) API 작업을 사용하여 이벤트를 검색할 수도 있습니다. AWS CLI 또는 API를 사용하면 최대 지난 14일 동안의 이벤트를 검색할 수 있습니다.

## 이벤트 보기(콘솔)
<a name="viewing-events-console"></a>

**콘솔에서 Neptune 이벤트를 보려면**

1.  AWS Management Console에 로그인하고 [https://console.aws.amazon.com/neptune/home](https://console.aws.amazon.com/neptune/home) Neptune 콘솔을 엽니다.

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

   페이지에는 지난 24시간 동안의 이벤트가 표시됩니다. 소스 유형 및 이벤트 범주별로 이벤트를 필터링할 수 있습니다.

## 이벤트 보기(AWS CLI)
<a name="viewing-events-cli"></a>

지난 한 시간 동안 생성된 모든 Neptune 이벤트를 보려면 파라미터 없이 `describe-events`를 실행합니다.

```
aws neptune describe-events
```

지난 7일(10,080분) 동안의 이벤트를 보려면 `--duration` 파라미터를 사용합니다.

```
aws neptune describe-events --duration 10080
```

시간 범위 내의 특정 DB 클러스터에 대한 이벤트를 보려면 , `--source-identifier``--source-type``--start-time`, 및 `--end-time` 파라미터를 사용합니다.

```
aws neptune describe-events \
    --source-identifier {{my-cluster}} \
    --source-type db-cluster \
    --start-time {{2026-04-01T00:00Z}} \
    --end-time {{2026-04-01T23:59Z}}
```

자세한 내용은 AWS CLI 명령 참조의 [describe-events](https://docs.aws.amazon.com/cli/latest/reference/neptune/describe-events.html)를 참조하세요. 프로그래밍 방식으로 이벤트를 검색하려면 Neptune API 참조의 [DescribeEvents](https://docs.aws.amazon.com/neptune/latest/apiref/API_DescribeEvents.html)를 참조하세요.