Alerting Systems

Configure alerts for equipment events and alarms.

Alerting Overview

FabConnect can send alerts via multiple channels when important events occur.

Alert Channels

Email

alerts:
  email:
    smtp_host: smtp.company.com
    smtp_port: 587
    from: fabconnect@company.com
    recipients:
      - oncall@company.com

Slack

alerts:
  slack:
    webhook_url: https://hooks.slack.com/...
    channel: "#fab-alerts"

PagerDuty

alerts:
  pagerduty:
    api_key: your-api-key
    service_id: PXXXXXX

Alert Rules

rules:
  - name: equipment-disconnect
    condition: event.type == "disconnected"
    severity: critical
    channels: [email, slack, pagerduty]

  - name: high-alarm
    condition: alarm.severity >= 8
    severity: warning
    channels: [slack]

Was this page helpful? /