Last active
November 7, 2019 17:01
-
-
Save armiiller/bfa4c7657b26147a7d610bf3ccc9067e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
rules: | |
- match: | |
always: true | |
actions: | |
# run a notification cycle. 1st notify me via email, sms, & slack. | |
# If the alert is still open after 1 minute, notify me via voice. | |
# If the alert is still open 5 minutes later, repeat this cycle. | |
- type: notify | |
channels: | |
- sms | |
- slack | |
timeout: 1m | |
- type: notify | |
channels: | |
- voice | |
timeout: 5m | |
# You can repeat this cycle between 0 and 3 times | |
- type: repeat | |
times: 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment