Dotazy na tabulku CIEventsOperational
Informace o používání těchto dotazů na webu Azure Portal najdete v kurzu služby Log Analytics. Informace o rozhraní REST API najdete v tématu Dotaz.
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 požadavků na události 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