Udostępnij za pomocą


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 Zdarzenie Przepływu Pracy

Pobiera listę zdarzeń operacyjnych o typie zdarzenia 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 żądań dotyczących zdarzeń 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ń API dla określonego identyfikatora wystąpienia.

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