Udostępnij za pośrednictwem


Zapytania dotyczące tabeli CIEventsOperational

Aby uzyskać informacje na temat korzystania z tych zapytań w witrynie Azure Portal, zobacz Samouczek usługi Log Analytics. Aby zapoznać się z interfejsem API REST, zobacz Zapytanie.

CIEventsOperational — typ zdarzenia ApiEvent

Pobiera listę zdarzeń operacyjnych z parametrem 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 zdarzenia WorkflowEvent

Pobiera listę zdarzeń operacyjnych o typie 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 — wszystkie zdarzenia dla określonego identyfikatora korelacji

Pobiera listę wszystkich zdarzeń żądania dla określonego identyfikatora korelacji

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

CIEventsOperational — wszystkie zdarzenia dla określonego identyfikatora wystąpienia

Pobiera listę żądań zdarzeń interfejsu API dla określonego identyfikatora wystąpienia.

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