Created
February 8, 2016 15:54
-
-
Save slackpad/b5ad3cf6d371327aae0a to your computer and use it in GitHub Desktop.
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
{ | |
"check": { | |
"name": "Disk Util", | |
"interval": "60s", | |
"notes": "Critical 5%, warning 10% free", | |
"script": "/usr/lib/nagios/plugins/check_disk -w 10% -c 5% -p /" | |
} | |
} | |
{ | |
"check": { | |
"name": "Load Avg", | |
"interval": "30s", | |
"notes": "Critical load average 2, warning load average 1", | |
"script": "/usr/lib/nagios/plugins/check_load -w 1,1,1 -c 2,2,2" | |
} | |
} | |
{ | |
"service": { | |
"name": "redis", | |
"port": 6379, | |
"check": { | |
"tcp": "localhost:6379", | |
"interval": "10s" | |
} | |
} | |
} | |
{ | |
"service": { | |
"name": "web", | |
"port": 80, | |
"check": { | |
"http": "http://localhost", | |
"interval": "10s" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment