다음을 통해 공유


CIEventsAudit 테이블에 대한 쿼리

Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 Log Analytics 자습서를 참조하세요. REST API는 쿼리를 참조 하세요.

CIEventsAudit - API 응답 코드 꺾은선형 차트

작업당 요청 응답 기간을 보여 주는 꺾은선형 차트입니다.

CIEventsAudit
| summarize DurationMs = avg(DurationMs)  by bin(TimeGenerated, 5m), OperationName
| render timechart

CIEventsAudit - 결과 형식 ClientError

결과 형식 ClientError: HTTP 상태 코드 < 500으로 완료된 운영 이벤트 요청 목록을 가져옵니다.

CIEventsAudit
| where ResultType has "ClientError"
| sort by TimeGenerated desc
| limit 100 // You can adjust the limit value to the number of logs you would like to retrieve.

CIEventsAudit - 보안 수준 오류

오류 심각도 수준으로 완료된 API 요청 목록을 가져옵니다.

CIEventsAudit
| where Level has "Error"
| sort by TimeGenerated desc
| limit 100 // You can adjust the limit value to the number of logs you would like to retrieve.

CIEvents - 특정 상관 관계 ID에 대한 모든 이벤트

특정 상관 관계 ID에 대한 모든 이벤트 요청 목록을 가져옵니다.

union CIEventsAudit , CIEventsOperational
| where CorrelationId == "" // Add your CorrelationId in the quotation marks
| sort by TimeGenerated desc
| limit 100

CIEventsAudit - 특정 인스턴스 ID에 대한 모든 이벤트

특정 인스턴스 ID에 대한 API 이벤트 요청 목록을 가져옵니다.

CIEventsAudit
| where InstanceId == "" // Add your InstanceId in the quotation marks
| sort by TimeGenerated desc
| limit 100