Skip to content

Commit b5be825

Browse files
Fix Acrolinx-related blocking issue
1 parent 9bc5654 commit b5be825

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

includes/resource-graph/samples/bytable/healthresources.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Search-AzGraph -Query "HealthResources | where type =~ 'microsoft.resourcehealth
146146

147147
### List of resources with availability states that have been impacted by unplanned, platform-initiated health events
148148

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.
150150

151151
```kusto
152152
HealthResources
@@ -184,7 +184,7 @@ Search-AzGraph -Query "HealthResources | where type == "microsoft.resour
184184

185185
### List of unavailable resources with their corresponding annotation details
186186

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.
188188

189189
```kusto
190190
HealthResources
@@ -222,7 +222,7 @@ Search-AzGraph -Query "HealthResources | where type == 'microsoft.resour
222222

223223
### Count of resources in a region that have been impacted by an availability disruptions along with the type of impact
224224

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.
226226

227227
```kusto
228228
HealthResources
@@ -260,13 +260,13 @@ Search-AzGraph -Query "HealthResources | where type == 'microsoft.resour
260260

261261
### List of resources impacted by a specific health event, along with impact time, impact details, availability state, and region
262262

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.
264264

265265
```kusto
266266
HealthResources
267267
| where type == "microsoft.resourcehealth/resourceannotations"
268268
| where properties.AnnotationName contains 'VirtualMachineHostRebootedForRepair'
269-
| project ResourceId = tolower(tostring(properties.targetResourceId)), Reason = tostring(properties.reason), Context = tostring(properties.context), Category = tostring(properties.category), Location = location, Timestamp = tostring(properties.occuredTime)
269+
| project ResourceId = tolower(tostring(properties.targetResourceId)), Reason = tostring(properties.reason), Context = tostring(properties.context), Category = tostring(properties.category), Location = location, Timestamp = tostring(properties.occurredTime)
270270
| join ( 
271271
     HealthResources
272272
    | where type == 'microsoft.resourcehealth/availabilitystatuses'
@@ -298,7 +298,7 @@ Search-AzGraph -Query "HealthResources | where type == "microsoft.resour
298298

299299
### List of resources impacted by planned events per region
300300

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.
302302

303303
```kusto
304304
HealthResources
@@ -336,7 +336,7 @@ Search-AzGraph -Query "HealthResources | where type == "microsoft.resour
336336

337337
### List of resources that have been impacted by unplanned platform disruptions, along with availability, power states and location
338338

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.
340340

341341
```kusto
342342
HealthResources

0 commit comments

Comments
 (0)