Dotazy na tabulku UpdateRunProgress
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.
Selhání instalace oprav pro vaše počítače
Vypíše pro každý počítač stav instalace aktualizací, u kterých instalace nebyla úspěšná.
// To create an alert for this query, click '+ New alert rule'
UpdateRunProgress
| where TimeGenerated>ago(1d)
| where InstallationStatus == "NotStarted"
| summarize by Title, InstallationStatus, SourceComputerId, UpdateId, Computer, ResourceId
| join kind= inner (
UpdateRunProgress
| where TimeGenerated>ago(1d)
| where InstallationStatus != "NotStarted"
| summarize by Title, InstallationStatus, SourceComputerId, UpdateId, Computer
) on UpdateId
| where InstallationStatus1 != "Succeed"
| summarize by Title, InstallationStatus, Computer, ResourceId