Azure Service Health Advisories in Cloud

Service Health Recommendations are a list of advisories in Azure that keeps you informed about potential risks to service/resource availability and recommends actions to prevent them.

There is no data stream in Cloud to display these, but luckily this is possible to retrieve using resource graph KQL data stream in Azure plugin and running the following query:

ServiceHealthResources
| where type =~ 'Microsoft.ResourceHealth/events'
| extend eventType = properties.EventType, status = properties.Status, title = properties.Title, trackingId = properties.TrackingId, summary = properties.Summary, priority = properties.Priority, impactStartTime = properties.ImpactStartTime, impactMitigationTime = todatetime(tolong(properties.ImpactMitigationTime))
| where eventType == 'HealthAdvisory' and impactMitigationTime > now()