activityLogAlerts
Summary
Details
リソース健全性アラートの構成
Impact: Low Category: Monitoring and Alerting PG Verified: Verified
Description:
該当するすべてのリソースに対してリソース正常性アラートを構成して、Azure リソースの現在および過去の正常性状態に関する最新情報を常に把握できるようにします。これらのリソースの健全性状態に変化があった場合に通知します。
Potential Benefits:
Stay informed on resource status
Learn More:
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:
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