Dotazy na tabulku CIEventsOperational

CIEventsOperational – typ události ApiEvent

Získá seznam provozních událostí s eventType jako 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 – typ události WorkflowEvent

Získá seznam provozních událostí s eventType jako 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 – všechny události pro konkrétní ID korelace.

Získá seznam všech událostí požadavku pro konkrétní ID korelace.

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

CIEventsOperational – všechny události pro konkrétní ID instance.

Získá seznam požadavků na události rozhraní API pro konkrétní ID instance.

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