Created
January 8, 2014 17:19
-
-
Save jswank/8320576 to your computer and use it in GitHub Desktop.
Example Sensu check, which only alerts after 10 failures on a 60 second interval, and won't alert on nights or weekends.
This file contains 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
{ | |
"checks": { | |
"noisy_queue_check": { | |
"handler": "default", | |
"command": "/etc/sensu/plugins/check-queue-length.rb", | |
"interval": 60, | |
"refresh": 60, | |
"occurrences": 10, | |
"subscribers": [ | |
"workers" | |
], | |
"subdue": { | |
"start": "22:00-05:00", | |
"end": "06:00-05:00", | |
"days": [ | |
"saturday", | |
"sunday" | |
] | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am going to use this subdue pattern. This pattern works correctly, @jswank?