-
-
Save luisvega/cac123a12988fb96893439229c59d592 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 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
{ | |
"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