Skip to content

Instantly share code, notes, and snippets.

@slackpad
Created February 8, 2016 15:54
Show Gist options
  • Save slackpad/b5ad3cf6d371327aae0a to your computer and use it in GitHub Desktop.
Save slackpad/b5ad3cf6d371327aae0a to your computer and use it in GitHub Desktop.
{
"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