An Azure service to centrally manages updates and compliance at scale.
Hello Andrea Longhitano
Thank you for posting your query on Microsoft Q&A platform.
Azure Update Manager alerting for assessment and patching failures is currently available only in Preview, and Microsoft has not published a GA timeline.
As a supported alternative, customers can monitor failures using Azure Monitor scheduled query alerts based on Azure Resource Graph, since Update Manager stores assessment and patching results in ARG. This allows using GA Azure Monitor alerting with Action Groups until native Update Manager alerting becomes generally available.
Azure Update Manager does not write data into Log Analytics tables like legacy Update Management (for example, there is no Update, UpdateSummary, or UpdateRunProgress table).
Instead, Azure Update Manager stores assessment and patching results in Azure Resource Graph (ARG).
The main resource type is:
YAML
microsoft.maintenance/updates
This resource contains Assessment results, Update installation (patching) results, Machine‑level status, Success and failure states.
Example: Machines with failed update installation: This query identifies machines where patch installation failed.
Resources
| where type == "microsoft.maintenance/updates"
| where properties.status == "Failed"
| project
name,
properties.resourceId,
properties.status,
properties.lastModifiedDateTime
2.Machines with failed assessment: This query identifies assessment failures.
Resources
| where type == "microsoft.maintenance/updates"
| where properties.assessmentStatus == "Failed"
| project
name,
properties.resourceId,
properties.assessmentStatus,
properties.lastModifiedDateTime
- Failed patching in the last 24 hours:
Resources
| where type == "microsoft.maintenance/updates"
| where properties.status == "Failed"
| where todatetime(properties.lastModifiedDateTime) > ago(1d)
| project
name,
properties.resourceId,
properties.status,
properties.lastModifiedDateTime
These queries can be used in Azure Resource Graph Explorer and Azure Monitor Scheduled Query Alerts.
Azure Update Manager does not use Log Analytics agent, No records are written to LogAnalyticsWorkspace → Tables.
If you have any other questions, please do let us know.
Thanks,
Suchitra.