AppServiceAuthenticationLogs 數據表的查詢
如需在 Azure 入口網站 使用這些查詢的相關信息,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢。
App Service 驗證的最新錯誤
列出最多 100 個來自所選時間範圍內 App Service 驗證的最新錯誤。
AppServiceAuthenticationLogs
| where TaskName == "MiddlewareError"
| sort by TimeGenerated desc
| take 100
App Service 驗證的最新警告
列出最多 100 個來自所選時間範圍內 App Service 驗證的最新警告。
AppServiceAuthenticationLogs
| where TaskName == "MiddlewareWarning"
| sort by TimeGenerated desc
| take 100
App Service 驗證的前 100 個最常見錯誤和警告
所選時間範圍內 App Service 驗證的前 100 個最頻繁錯誤和警告訊息計數,依類型排序(第一個顯示的錯誤),然後遞減計數。
AppServiceAuthenticationLogs
| where TaskName == "MiddlewareWarning" or TaskName == "MiddlewareError"
| summarize count() by Message, TaskName
| order by TaskName asc, count_
| take 100