기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
AWS DevOps 에이전트 이벤트 세부 정보 참조
AWS 서비스의 이벤트에는 , source, detail-type, accountregion, 등 일반적인 메타데이터 필드가 있습니다time. 이러한 이벤트에는 서비스와 관련된 데이터가 있는 detail 필드도 포함됩니다. For AWS DevOps 에이전트 이벤트의 경우 source는 항상 aws.aidevops 이고는 특정 이벤트를 detail-type 식별합니다.
time 필드는 조사 또는 완화가 마지막으로 업데이트된 시간입니다. EventBridge가 이벤트를 수신한 시간이 아닙니다. 값이 detail 없는의 필드는 로 설정되지 않고 생략됩니다null. 따라서 metadata.execution_id 및를 선택 사항data.summary_record_id으로 취급해야 합니다.
조사 이벤트
다음 detail-type 값은 조사 이벤트를 식별합니다.
Investigation CreatedInvestigation Priority UpdatedInvestigation In ProgressInvestigation CompletedInvestigation FailedInvestigation Timed OutInvestigation CancelledInvestigation Pending TriageInvestigation LinkedInvestigation Skipped
source 및 detail-type 필드는 AWS DevOps 에이전트 이벤트에 대한 특정 값을 포함하므로 아래에 포함되어 있습니다. 모든 이벤트에 포함된 다른 메타데이터 필드의 정의는 Amazon EventBridge 이벤트 참조의 이벤트 구조를 참조하세요.
다음은 조사 이벤트에 대한 JSON 구조입니다.
{ . . ., "detail-type" : "string", "source" : "aws.aidevops", . . ., "detail" : { "version" : "string", "metadata" : { "agent_space_id" : "string", "task_id" : "string", "execution_id" : "string" }, "data" : { "task_type" : "string", "priority" : "string", "status" : "string", "created_at" : "string", "updated_at" : "string", "summary_record_id" : "string" } } }
detail-type 이벤트 유형을 식별합니다. 조사 이벤트의 경우 이는 이전에 나열된 이벤트 이름 중 하나입니다.
source 이벤트를 생성한 서비스를 식별합니다. For AWS DevOps 에이전트 이벤트의 경우이 값은 입니다aws.aidevops.
detail 이벤트별 데이터가 포함된 JSON 객체입니다. detail 객체에는 다음 필드가 포함됩니다.
version(문자열) - 이벤트 세부 정보의 스키마 버전입니다. 현재1.0.0.metadata.agent_space_id(문자열) - 이벤트가 시작된 에이전트 공간의 고유 식별자입니다.metadata.task_id(문자열) - 작업의 고유 식별자입니다.metadata.execution_id(문자열) - 실행 실행의 고유 식별자입니다. 실행이 조사에 할당되었을 때 표시됩니다.data.task_type(문자열) - 작업 유형입니다. 값:INVESTIGATION.data.priority(문자열) - 우선 순위 수준입니다. 값:CRITICAL,HIGH,MEDIUM,LOW,MINIMAL.data.status(문자열) - 현재 상태입니다. 값:PENDING_START,IN_PROGRESS,COMPLETED,FAILED,TIMED_OUT,CANCELLED,PENDING_TRIAGE, ,LINKED.SKIPPEDdata.created_at(문자열) - 작업이 생성될 때 ISO 8601 타임스탬프입니다.data.updated_at(문자열) - 작업이 마지막으로 업데이트된 시점의 ISO 8601 타임스탬프입니다.data.summary_record_id(문자열) - 조사 결과가 포함된 요약 레코드의 식별자입니다. 요약 레코드가 실행을 위해 작성되었을 때 포함되고 요약이 생성되지 않은 완료된 조사를 포함하여 달리 생략되었습니다. 이벤트에는 요약 텍스트가 포함되어 있지 않습니다. 읽으려면 이벤트의metadata.agent_space_id및 ,recordType의metadata.execution_id를 사용하여 ListJournalRecords를 호출investigation_summary_md하고이 값과recordId일치하는 반환된 레코드를 선택합니다. 요약 검색에 대한 자세한 내용은 조사 또는 완화 요약 검색을 참조하세요.
예: 조사 완료 이벤트
{ "version": "0", "id": "12345678-1234-1234-1234-123456789015", "detail-type": "Investigation Completed", "source": "aws.aidevops", "account": "123456789012", "time": "2026-03-12T18:10:00Z", "region": "us-east-1", "resources": [ "arn:aws:aidevops:us-east-1:123456789012:agentspace/8f6187a7-0388-4926-8217-3a0fe32f757c" ], "detail": { "version": "1.0.0", "metadata": { "agent_space_id": "8f6187a7-0388-4926-8217-3a0fe32f757c", "task_id": "a1b2c3d4-5678-90ab-cdef-example11111", "execution_id": "b2c3d4e5-6789-01ab-cdef-example22222" }, "data": { "task_type": "INVESTIGATION", "priority": "CRITICAL", "status": "COMPLETED", "created_at": "2026-03-12T18:00:00Z", "updated_at": "2026-03-12T18:10:00Z", "summary_record_id": "d4e5f6g7-6789-01ab-cdef-example44444" } } }
예: 조사 실패 이벤트
{ "version": "0", "id": "12345678-1234-1234-1234-123456789016", "detail-type": "Investigation Failed", "source": "aws.aidevops", "account": "123456789012", "time": "2026-03-12T18:10:00Z", "region": "us-east-1", "resources": [ "arn:aws:aidevops:us-east-1:123456789012:agentspace/8f6187a7-0388-4926-8217-3a0fe32f757c" ], "detail": { "version": "1.0.0", "metadata": { "agent_space_id": "8f6187a7-0388-4926-8217-3a0fe32f757c", "task_id": "a1b2c3d4-5678-90ab-cdef-example11111", "execution_id": "b2c3d4e5-6789-01ab-cdef-example22222" }, "data": { "task_type": "INVESTIGATION", "priority": "CRITICAL", "status": "FAILED", "created_at": "2026-03-12T18:00:00Z", "updated_at": "2026-03-12T18:10:00Z" } } }
완화 이벤트
다음 detail-type 값은 완화 이벤트를 식별합니다.
Mitigation In ProgressMitigation CompletedMitigation FailedMitigation Timed OutMitigation Cancelled
source 및 detail-type 필드는 AWS DevOps 에이전트 이벤트에 대한 특정 값을 포함하므로 아래에 포함되어 있습니다. 모든 이벤트에 포함된 다른 메타데이터 필드의 정의는 Amazon EventBridge 이벤트 참조의 이벤트 구조를 참조하세요.
다음은 완화 이벤트에 대한 JSON 구조입니다.
{ . . ., "detail-type" : "string", "source" : "aws.aidevops", . . ., "detail" : { "version" : "string", "metadata" : { "agent_space_id" : "string", "task_id" : "string", "execution_id" : "string" }, "data" : { "task_type" : "string", "priority" : "string", "status" : "string", "created_at" : "string", "updated_at" : "string", "summary_record_id" : "string" } } }
detail-type 이벤트 유형을 식별합니다. 완화 이벤트의 경우 이는 이전에 나열된 이벤트 이름 중 하나입니다.
source 이벤트를 생성한 서비스를 식별합니다. For AWS DevOps 에이전트 이벤트의 경우이 값은 입니다aws.aidevops.
detail 이벤트별 데이터가 포함된 JSON 객체입니다. detail 객체에는 다음 필드가 포함됩니다.
version(문자열) - 이벤트 세부 정보의 스키마 버전입니다. 현재1.0.0.metadata.agent_space_id(문자열) - 이벤트가 시작된 에이전트 공간의 고유 식별자입니다.metadata.task_id(문자열) - 작업의 고유 식별자입니다.metadata.execution_id(문자열) - 실행 실행의 고유 식별자입니다. 실행이 완화에 할당되었을 때 표시됩니다.data.task_type(문자열) - 작업 유형입니다. 값:INVESTIGATION.data.priority(문자열) - 우선 순위 수준입니다. 값:CRITICAL,HIGH,MEDIUM,LOW,MINIMAL.data.status(문자열) - 현재 상태입니다. 값:IN_PROGRESS,COMPLETED,FAILED,TIMED_OUT,CANCELLED.data.created_at(문자열) - 작업이 생성될 때 ISO 8601 타임스탬프입니다.data.updated_at(문자열) - 작업이 마지막으로 업데이트된 시점의 ISO 8601 타임스탬프입니다.data.summary_record_id(문자열) - 완화 조사 결과를 포함하는 요약 레코드의 식별자입니다. 요약 레코드가 실행을 위해 작성되었을 때 포함되고 요약이 생성되지 않은 완료된 완화 조치를 포함하여 달리 생략되었습니다. 이벤트에는 요약 텍스트가 포함되어 있지 않습니다.recordType의를 사용하여 조사 이벤트에 설명된ListJournalRecords대로 로 검색합니다mitigation_summary_md.
예: 완화 완료 이벤트
{ "version": "0", "id": "12345678-1234-1234-1234-12345678901c", "detail-type": "Mitigation Completed", "source": "aws.aidevops", "account": "123456789012", "time": "2026-03-12T18:20:00Z", "region": "us-east-1", "resources": [ "arn:aws:aidevops:us-east-1:123456789012:agentspace/8f6187a7-0388-4926-8217-3a0fe32f757c" ], "detail": { "version": "1.0.0", "metadata": { "agent_space_id": "8f6187a7-0388-4926-8217-3a0fe32f757c", "task_id": "a1b2c3d4-5678-90ab-cdef-example11111", "execution_id": "c3d4e5f6-7890-12ab-cdef-example33333" }, "data": { "task_type": "INVESTIGATION", "priority": "CRITICAL", "status": "COMPLETED", "created_at": "2026-03-12T18:00:00Z", "updated_at": "2026-03-12T18:20:00Z", "summary_record_id": "e5f6g7h8-7890-12ab-cdef-example55555" } } }
예: 완화 실패 이벤트
{ "version": "0", "id": "12345678-1234-1234-1234-12345678901d", "detail-type": "Mitigation Failed", "source": "aws.aidevops", "account": "123456789012", "time": "2026-03-12T18:20:00Z", "region": "us-east-1", "resources": [ "arn:aws:aidevops:us-east-1:123456789012:agentspace/8f6187a7-0388-4926-8217-3a0fe32f757c" ], "detail": { "version": "1.0.0", "metadata": { "agent_space_id": "8f6187a7-0388-4926-8217-3a0fe32f757c", "task_id": "a1b2c3d4-5678-90ab-cdef-example11111", "execution_id": "c3d4e5f6-7890-12ab-cdef-example33333" }, "data": { "task_type": "INVESTIGATION", "priority": "CRITICAL", "status": "FAILED", "created_at": "2026-03-12T18:00:00Z", "updated_at": "2026-03-12T18:20:00Z" } } }