Answers for "how to send alert notifications to multiple destinations"

0

how to send alert notifications to multiple destinations

route:
 receiver: slack  # Fallback.
 routes:
   - match:
       severity: page
     continue: true
     receiver: slack
   - match:
       severity: page
     receiver: pagerduty


receivers:
  - name: slack
    slack_configs:
      - api_url: THE_WEBHOOK_URL
        channel: '#general'
  - name: pagerduty
    pagerduty_configs:
      - service_key: AN_INTEGRATION_KEY
Posted by: Guest on September-23-2020
0

how to send alert notifications to multiple destinations

route:
 receiver: slack_pagerduty

receivers:
  - name: slack_pagerduty
    slack_configs:
      - api_url: THE_WEBHOOK_URL
        channel: '#general'
    pagerduty_configs:
      - service_key: AN_INTEGRATION_KEY
Posted by: Guest on September-23-2020

Code answers related to "how to send alert notifications to multiple destinations"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language