AACAudit 資料表的查詢
如需在 Azure 入口網站 中使用這些查詢的詳細資訊,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢。
最新的刪除索引鍵/值作業
列出 App Config 資料平面中最新的刪除索引鍵/值作業。
// This query helps retrieve the most recent 10 audit logs for deleting key-value operations in App Configuration data plane.
AACAudit
| where EventCategory == "ApplicationManagement" and OperationName == "delete-keyvalue"
| where TimeGenerated > ago(1h)
| sort by TimeGenerated desc
| limit 10
最新的客戶端錯誤
列出因客戶端錯誤而發生的最近失敗。
// This query helps list the most recent 10 audit logs for failures because of client error.
AACAudit
| where ResultType == "ClientError" and TimeGenerated > ago(1h)
| sort by TimeGenerated desc
| limit 10