DevCenterDiagnosticLogs 數據表的查詢
如需在 Azure 入口網站 中使用這些查詢的詳細資訊,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢。
失敗的動作查詢
摘要說明失敗的作業數目和類型。
DevCenterDiagnosticLogs
| where toint(ResponseCode) >= 400
| extend _date = bin(TimeGenerated, 1d)
| summarize failureCount = count() by OperationName, _date
| sort by _date desc