Skip to content

ActivityLogAlert

Represents Azure Monitor Activity Log Alerts.

Labels: :ArmResource:ActivityLogAlert

Properties:

  • id - Resource ID (primary key)
  • description - Alert description
  • enabled - Whether the alert is enabled
  • condition - Alert condition (JSON)

Relationships

Incoming

  • ArmResourceHAS_ALERTActivityLogAlert - Any ARM resource in scope fires this alert

Examples

// Find all enabled alerts and their scoped resources
MATCH (r:ArmResource)-[:HAS_ALERT]->(a:ActivityLogAlert)
WHERE a.enabled = true
RETURN r.id, labels(r), a.id, a.description