summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-26 16:02:00 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-26 16:02:00 +0000
commitc61f9735c8b5be297c6114d8f2067adf42566b9e (patch)
tree928cb6e6a0aabe68b1567469103aadf6b07f6139 /etc
parentab883e6a1a17c014cd283d2a96d7a978d2330499 (diff)
Updated so that each alert-type has its dedicated alert-target.
Diffstat (limited to 'etc')
-rw-r--r--etc/custodian/custodian.cfg13
1 files changed, 10 insertions, 3 deletions
diff --git a/etc/custodian/custodian.cfg b/etc/custodian/custodian.cfg
index 1a22239..5299fed 100644
--- a/etc/custodian/custodian.cfg
+++ b/etc/custodian/custodian.cfg
@@ -25,14 +25,21 @@
##
# The target of the alert is alerter-specific.
#
+# A target is based upon the name of the alerter with "_target"
+# suffixed.
+#
+#
# For alerter=smtp the target is the email address to notify.
-# alerter_target = root@localhost
+# smtp_target = root@localhost
#
# For alerter=mauve the target is the host to notify
-# alerter_target = alert.bytemark.co.uk
+# mauve_target = alert.bytemark.co.uk
#
# For alerter=file the target is the logfile to write to.
-# alerter_target = /tmp/alerts.log
+# file_target = /tmp/alerts.log
+#
+# For alerter=redis the target is the redis server to talk to.
+# redis_target = 127.0.0.1
#
##