共用方式為


AACAudit 資料表的查詢

最新的刪除索引鍵/值作業

列出 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