WaaSDeploymentStatus テーブルのクエリ

Azure portal でこれらのクエリを使用する方法については、 Log Analytics のチュートリアルを参照してください。 REST API については、「 Query」を参照してください。

更新プログラムの展開エラー

デバイスと更新プログラムの分類による更新プログラムの展開エラー。

WaaSDeploymentStatus
| where DeploymentStatus == "Failed"
| summarize arg_max(TimeGenerated, *) by ComputerID, UpdateClassification 
| project Computer, ComputerID, ReleaseName, UpdateCategory, UpdateClassification, DeploymentError, DeploymentErrorCode

更新を完了するために再起動が保留中のデバイス

更新を完了するために再起動が保留中のデバイス。

WaaSDeploymentStatus
| where DetailedStatus == "Reboot pending"
| summarize arg_max(TimeGenerated, *) by ComputerID, UpdateClassification
| project Computer, ComputerID, DetailedStatus, ReleaseName, UpdateCategory, UpdateClassification, LastScan

セーフガード ホールドを備えたデバイス

このクエリでは、セーフガード ホールドの影響を受けたすべてのデバイスのデバイス データが表示されます。

WaaSDeploymentStatus
| where DetailedStatus == "Safeguard Hold"
| summarize arg_max(TimeGenerated, *) by ComputerID, UpdateClassification
| project TimeGenerated, DetailedStatus, ComputerID, ReleaseName, UpdateCategory, UpdateClassification

セーフガード ホールドを使用したデバイスのターゲット ビルド配布

セーフガードの影響を受けたデバイスのターゲット ビルド分布の円グラフ。

WaaSDeploymentStatus
| where DetailedStatus == "Safeguard Hold"
| summarize count(ComputerID) by TargetBuild
| render piechart