summaryrefslogtreecommitdiffstats
path: root/Monitoring/conf/services.cfg
diff options
context:
space:
mode:
authorroot <root@krebs>2011-06-29 21:06:26 +0200
committerroot <root@krebs>2011-06-29 21:06:26 +0200
commit01d6ff215f8a142960551cabaa084667ef482133 (patch)
tree817b8b090da2b3d3f8b127499347dd455885e887 /Monitoring/conf/services.cfg
parente0b0b90df26b9190bb24ecee0a3ddb26f4156438 (diff)
parentfc1e4fcabd1e888089d2ea970ee6906735b84598 (diff)
Merge branch 'master' of github.com:/krebscode/painload
Diffstat (limited to 'Monitoring/conf/services.cfg')
-rw-r--r--Monitoring/conf/services.cfg26
1 files changed, 26 insertions, 0 deletions
diff --git a/Monitoring/conf/services.cfg b/Monitoring/conf/services.cfg
new file mode 100644
index 00000000..e3a61eb0
--- /dev/null
+++ b/Monitoring/conf/services.cfg
@@ -0,0 +1,26 @@
+# check that web services are running
+define service {
+ hostgroup_name http-servers
+ service_description HTTP
+ check_command check_http
+ use generic-service
+ notification_interval 0 ; set > 0 if you want to be renotified
+}
+
+# check that ssh services are running
+define service {
+ hostgroup_name ssh-servers
+ service_description SSH
+ check_command check_ssh
+ use generic-service
+ notification_interval 0 ; set > 0 if you want to be renotified
+}
+
+# check that ping-only hosts are up
+define service {
+# hostgroup_name ping-servers
+ service_description PING
+ check_command check_ping!100.0,20%!500.0,60%
+ use generic-service
+ notification_interval 0 ; set > 0 if you want to be renotified
+}