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

workflowEvent として eventType を持つ操作イベントの一覧を取得します。

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