共用方式為


CIEventsAudit 數據表的查詢

如需在 Azure 入口網站 中使用這些查詢的相關信息,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢

CIEventsAudit - API 回應碼折線圖

顯示每個作業要求回應持續時間的折線圖。

CIEventsAudit
| summarize DurationMs = avg(DurationMs)  by bin(TimeGenerated, 5m), OperationName
| render timechart

CIEventsAudit - 結果類型 ClientError

取得作業事件要求的清單,此要求已完成結果類型 ClientError:HTTP 狀態代碼 < 500。

CIEventsAudit
| where ResultType has "ClientError"
| sort by TimeGenerated desc
| limit 100 // You can adjust the limit value to the number of logs you would like to retrieve.

CIEventsAudit - 安全性層級錯誤

取得以錯誤嚴重性層級完成的 API 要求清單。

CIEventsAudit
| where Level has "Error"
| sort by TimeGenerated desc
| limit 100 // You can adjust the limit value to the number of logs you would like to retrieve.

CIEvents - 特定相互關聯標識符的所有事件

取得特定相互關聯標識碼的所有事件要求清單

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

CIEventsAudit - 特定實例標識碼的所有事件

取得特定實例識別碼的 API 事件要求清單。

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