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
commit19087662065bd48aa50d8e5acb1416e002dde393 (patch)
tree7a3abfe0f11d23ee4802e05fb5f783c02ba0ef2f /etc
parentb37c5109ba4a25fa61bdb0a90b4e72f93f78c35f (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
#
##