Service Health Alerts


The presented resiliency recommendations in this guidance include Service Health Alerts and associated resources and settings.

Summary of Recommendations

Recommendations Details

ALA-1 - サービス正常性アラートを構成します

Category: Monitoring

Impact: High

Guidance

サービス正常性は、使用している Azure サービスとリージョンの正常性を個人用に表示します。これは、認証された Service Health エクスペリエンスによって、現在使用しているサービスとリソースが認識されるため、停止、計画メンテナンス アクティビティ、その他の正常性に関するアドバイザリに関する通信に影響を与えるサービスを探すのに最適な場所です。Service Health を使用する最善の方法は、サービスの問題、計画メンテナンス、またはその他の変更が、使用する Azure サービスやリージョンに影響を与える可能性がある場合に、優先する通信チャネルを介して通知するように Service Health アラートを設定することです。

Resources

Resource Graph Query

// Azure Resource Graph Query
// This resource graph query will return all subscriptions without Service Health alerts configured.

resourcecontainers
| where type == 'microsoft.resources/subscriptions'
| project subscriptionAlerts=tostring(id),name,tags
| join kind=leftouter (
  resources
  | where type == 'microsoft.insights/activitylogalerts' and properties.condition contains "ServiceHealth"
  | extend subscriptions = properties.scopes
  | project subscriptions
  | mv-expand subscriptions
  | project subscriptionAlerts = tostring(subscriptions)
) on subscriptionAlerts
| where isempty(subscriptionAlerts1)
| project-away subscriptionAlerts1
| project recommendationID = "ala-1",id=subscriptionAlerts,name,tags