다음을 통해 공유


CIEventsOperational 테이블에 대한 쿼리

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

CIEventsOperational - 이벤트 유형 ApiEvent

eventType을 APIEvent로 사용하는 운영 이벤트 목록을 가져옵니다.

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

CIEventsOperational- 이벤트 유형 WorkflowEvent

eventType을 WorkflowEvent로 사용하는 작업 이벤트 목록을 가져옵니다.

CIEventsOperational
| where EventType has "WorkflowEvent"
| 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

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

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

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