Share via


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

가장 최근의 클라이언트 오류

클라이언트 오류로 인해 가장 최근의 오류를 Lists.

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