Sdílet prostřednictvím


Dotazy na tabulku DevCenterDiagnosticLogs

Informace o používání těchto dotazů na webu Azure Portal najdete v kurzu služby Log Analytics. Informace o rozhraní REST API najdete v tématu Dotaz.

Dotaz na neúspěšné akce

Shrnuje počet a typ operací, které selhaly.

DevCenterDiagnosticLogs
| where toint(ResponseCode) >= 400 
| extend _date = bin(TimeGenerated, 1d)
| summarize failureCount = count() by OperationName, _date
| sort by _date desc