CIEventsOperational 테이블에 대한 쿼리

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 - 특정 instance ID에 대한 모든 이벤트

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

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