Abfragen für die CIEventsOperational-Tabelle
Informationen zur Verwendung dieser Abfragen im Azure-Portal finden Sie im Log Analytics-Lernprogramm. Informationen zur REST-API finden Sie unter "Abfrage".
CIEventsOperational – Ereignistyp ApiEvent
Ruft eine Liste der betriebstechnischen Ereignisse mit eventType als APIEvent ab.
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- Ereignistyp WorkflowEvent
Ruft eine Liste der betriebstechnischen Ereignisse mit eventType als WorkflowEvent ab.
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 – alle Ereignisse für eine bestimmte Korrelations-ID
Ruft eine Liste aller Ereignisanforderungen für eine bestimmte Korrelations-ID ab.
union CIEventsAudit , CIEventsOperational
| where CorrelationId == "" // Add your CorrelationId in the quotation marks
| sort by TimeGenerated desc
| limit 100
CIEventsOperational – alle Ereignisse für eine bestimmte Instanz-ID
Ruft eine Liste der API-Ereignisanforderungen für eine bestimmte Instanz-ID ab.
CIEventsOperational
| where InstanceId == "" // Add your InstanceId in the quotation marks
| sort by TimeGenerated desc
| limit 100