You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: includes/resource-graph/samples/bytable/healthresources.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -146,7 +146,7 @@ Search-AzGraph -Query "HealthResources | where type =~ 'microsoft.resourcehealth
146
146
147
147
### List of resources with availability states that have been impacted by unplanned, platform-initiated health events
148
148
149
-
Returns the latest list of virtual machines impacted by unplanned disruptions that were triggered unexpectedly by the Azure platform. This query returns all the impacted virtual machines aggregated by their Ids along with the corresponding availability state and associated annotation (properties.reason) summarizing the specific disruption.
149
+
Returns the latest list of virtual machines impacted by unplanned disruptions that were triggered unexpectedly by the Azure platform. This query returns all the impacted virtual machines aggregated by their ID property, along with the corresponding availability state and associated annotation (properties.reason) summarizing the specific disruption.
150
150
151
151
```kusto
152
152
HealthResources
@@ -184,7 +184,7 @@ Search-AzGraph -Query "HealthResources | where type == "microsoft.resour
184
184
185
185
### List of unavailable resources with their corresponding annotation details
186
186
187
-
Returns a list of virtual machines currently not in an **Available** state, aggregated by their Ids. The query also shows the virtual machines' actual availability state as well as their associated details, including the reason for their unavailability.
187
+
Returns a list of virtual machines currently not in an **Available** state, aggregated by their ID property. The query also shows the virtual machines' actual availability state as well as their associated details, including the reason for their unavailability.
188
188
189
189
```kusto
190
190
HealthResources
@@ -222,7 +222,7 @@ Search-AzGraph -Query "HealthResources | where type == 'microsoft.resour
222
222
223
223
### Count of resources in a region that have been impacted by an availability disruptions along with the type of impact
224
224
225
-
Returns the count of virtual machines that are currently not in an **Available** state, aggregated by their Ids. The query also shows the corresponding location and annotation details, including the cause for the VMs not be in an **Available** state.
225
+
Returns the count of virtual machines that are currently not in an **Available** state, aggregated by their ID property. The query also shows the corresponding location and annotation details, including the cause for the VMs not be in an **Available** state.
226
226
227
227
```kusto
228
228
HealthResources
@@ -260,13 +260,13 @@ Search-AzGraph -Query "HealthResources | where type == 'microsoft.resour
260
260
261
261
### List of resources impacted by a specific health event, along with impact time, impact details, availability state, and region
262
262
263
-
Returns a list of virtual machines impacted by the `VirtualMachineHostRebootedForRepair` annotation, aggregated by their Ids. The query also returns the virtual machines' corresponding availability state, time of disruption, and annotation details, including the impact cause.
263
+
Returns a list of virtual machines impacted by the `VirtualMachineHostRebootedForRepair` annotation, aggregated by their ID property. The query also returns the virtual machines' corresponding availability state, time of disruption, and annotation details, including the impact cause.
264
264
265
265
```kusto
266
266
HealthResources
267
267
| where type == "microsoft.resourcehealth/resourceannotations"
268
268
| where properties.AnnotationName contains 'VirtualMachineHostRebootedForRepair'
| where type == 'microsoft.resourcehealth/availabilitystatuses'
@@ -298,7 +298,7 @@ Search-AzGraph -Query "HealthResources | where type == "microsoft.resour
298
298
299
299
### List of resources impacted by planned events per region
300
300
301
-
Returns a list of virtual machines impacted by planned maintenance or repair operations conducted by the Azure platform, aggregated by their Ids. The query also returns the virtual machines' corresponding availability state, time of disruption, location, and annotation details, including the impact cause.
301
+
Returns a list of virtual machines impacted by planned maintenance or repair operations conducted by the Azure platform, aggregated by their ID property. The query also returns the virtual machines' corresponding availability state, time of disruption, location, and annotation details, including the impact cause.
302
302
303
303
```kusto
304
304
HealthResources
@@ -336,7 +336,7 @@ Search-AzGraph -Query "HealthResources | where type == "microsoft.resour
336
336
337
337
### List of resources that have been impacted by unplanned platform disruptions, along with availability, power states and location
338
338
339
-
Returns a list of virtual machines impacted by planned maintenance or repair operations conducted by the Azure platform, aggregated by their Ids. The query also shows the virtual machines' corresponding availability state, power state, and location details.
339
+
Returns a list of virtual machines impacted by planned maintenance or repair operations conducted by the Azure platform, aggregated by their ID property. The query also shows the virtual machines' corresponding availability state, power state, and location details.
0 commit comments