Skip to content

Commit b535fbe

Browse files
Merge pull request #16666 from ManikaDhiman/md-health-alerts
Health alerts doc improvements
2 parents 52de280 + ced8799 commit b535fbe

File tree

1 file changed

+34
-3
lines changed

1 file changed

+34
-3
lines changed

azure-local/manage/health-alerts-via-azure-monitor-alerts.md

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,22 @@ author: alkohli
55
ms.author: alkohli
66
ms.topic: how-to
77
ms.service: azure-stack-hci
8-
ms.date: 02/26/2024
8+
ms.date: 12/26/2024
99
---
1010

1111
# Respond to Azure Local health alerts using Azure Monitor alerts
1212

1313
[!INCLUDE [hci-applies-to-23h2](../includes/hci-applies-to-23h2.md)]
1414

15+
The OS health service for Azure Local continuously monitors your Azure Local system to detect over 80 health issues across various components, such as physical and virtual disk, storage pool capacity, volume capacity, network interface, storage QoS, virtual machines (VMs), and VHDs. It provides information about the affected component, including the cause, time of the issue, and recommendations to mitigate it. You can view health issues like unsupported hardware, unresponsive disk, bad block writes, detached drives, repair needs, exceeded CPU, memory and storage usage, and high latency. For a complete list of supported health faults, see [View Health Service faults](./health-service-faults.md).
16+
1517
This article describes how to use [Azure Monitor alerts](/azure/azure-monitor/alerts/alerts-overview) to proactively identify, notify, and respond to Azure Local health alerts.
1618

17-
## About integration of Azure Monitor and Azure Local alerts
19+
## Azure Local health alerts integration with Azure Monitor
1820

1921
The integration of Azure Monitor alerts with Azure Local enhances the health alerts capability of Azure Local. With this integration, any health alerts generated within your on-premises Azure Local system are automatically forwarded to Azure Monitor alerts. You can link these alerts with your automated incident management systems, ensuring timely and efficient responses.
2022

21-
For more information about Azure Monitor alerts, see [What are Azure Monitor alerts?](/azure/azure-monitor/alerts/alerts-overview).
23+
For more information about Azure Monitor alerts, see [What are Azure Monitor alerts?](/azure/azure-monitor/alerts/alerts-overview)
2224

2325
## Benefits
2426

@@ -87,6 +89,35 @@ The **Alerts** blade has a high-level summary of alerts at each severity level.
8789
8890
![Screenshot of the Overview page of your Azure Local system resource page with the alerts displayed.](./media/health-alerts-via-azure-monitor-alerts/health-alerts-summary-5.png)-->
8991

92+
## Modify health alerts threshold
93+
94+
You can modify the threshold of some health alerts, such as CPU, memory, storage usage via PowerShell. For more information, see [Modify Health Service settings](./health-service-settings.md).
95+
96+
To view the current threshold settings for different health faults, run the following command:
97+
98+
```powershell
99+
Get-StorageSubSystem Cluster* | Get-StorageHealthSetting -Name <SettingName>
100+
```
101+
102+
For example, to view the storage volume capacity warning and critical threshold, run the following commands:
103+
104+
```powershell
105+
Get-StorageSubSystem Cluster* | Get-StorageHealthSetting -Name "System.Storage.Volume.CapacityThreshold.Warning"
106+
Get-StorageSubSystem Cluster* | Get-StorageHealthSetting -Name "System.Storage.Volume.CapacityThreshold.Critical"
107+
```
108+
109+
To change the threshold to desirable setting, run the following command:
110+
111+
```powershell
112+
Get-StorageSubSystem Cluster* | Set-StorageHealthSetting -Name <SettingName> -Value <Value>
113+
```
114+
115+
For example, to change the storage volume capacity warning threshold, run the following command:
116+
117+
```powershell
118+
Get-StorageSubSystem Cluster* | Set-StorageHealthSetting -Name "System.Storage.Volume.CapacityThreshold.Warning" -Value 70
119+
```
120+
90121
## Disable health alerts
91122

92123
To disable the health alerts capability, uninstall the Azure Monitor alerts extension that you installed earlier.

0 commit comments

Comments
 (0)