Kueri untuk tabel AACAudit

Operasi hapus nilai kunci terbaru

Cantumkan operasi kunci-nilai penghapusan terbaru di bidang data 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

Kesalahan klien terbaru

Lists kegagalan terbaru karena kesalahan klien.

// 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