summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
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
#
##