Azure Proactive Resiliency Library v2
Tools Glossary GitHub GitHub Issues Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

activityLogAlerts

Summary

RecommendationImpactCategoryAutomation AvailablePG Verified
リソース健全性アラートの構成LowMonitoring and AlertingNoVerified
サービス健全性アラートの構成HighMonitoring and AlertingYesVerified

Details


リソース健全性アラートの構成

Impact:  Low Category:  Monitoring and Alerting PG Verified:  Verified

Description:

該当するすべてのリソースに対してリソース正常性アラートを構成して、Azure リソースの現在および過去の正常性状態に関する最新情報を常に把握できるようにします。これらのリソースの健全性状態に変化があった場合に通知します。

Potential Benefits:

Stay informed on resource status
Learn More:
Resource Health
Configure Resource Health alerts in the Azure portal
Alerts Health

ARG Query:

Click the Azure Resource Graph tab to view the query

// cannot-be-validated-with-arg



サービス健全性アラートの構成

Impact:  High Category:  Monitoring and Alerting PG Verified:  Verified

Description:

サービスの正常性では、使用されている Azure サービスとリージョンのパーソナライズされた正常性ビューが提供され、使用されているサービスを把握することで、停止、計画されたメンテナンス、正常性に関する勧告に関する通知に最適な場所が提供されます。

Potential Benefits:

Proactive outage and maintenance alerts
Learn More:
What is Azure Service Health?
Configure alerts for service health events

ARG Query:

Click the Azure Resource Graph tab to view the 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 = "9729c89d-8118-41b4-a39b-e12468fa872b",id=subscriptionAlerts,name,tags