summaryrefslogtreecommitdiff
path: root/etc/custodian/custodian.cfg
blob: 8870250415d8c6467d7bb90a5f944ca464d65e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#
# This configuration file controls global settings for the
# custodian alerter.  The commented out values are the default
#


##
# The type of queue to use: "redis" or "beanstalkd".
#
# queue_type = redis
##


##
# The alerting method to use
#
# alerter = smtp
##


##
# Some alerts might have a source attribute to set
# currently only the mauive-alerter does, but that
# could change.
#
# alert_source = custodian.one-eyed-jack
#
##


##
# 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.
#   smtp_target = root@localhost
#
# For alerter=mauve the target is the host to notify
#   mauve_target = alert.bytemark.co.uk
#
# For alerter=file the target is the logfile to write to.
#   file_target = /tmp/alerts.log
#
# For alerter=redis the target is the redis server to talk to.
#   redis_target = 127.0.0.1
#
##



##
#
# The number of times to repeat a test before regarding it
# as failed
#
# retries = 5
#
##

##
#
#  Should we sleep before repeating tests?  If so this is the
# number of second to sleep
#
# retry_delay = 1
#
##


##
# The timeout period to use for tests
#
# timeout = 30
##


##
# The time during between which the weekday is "working".
#
# This is ignored on Saturday/Sunday.
#
# These two settings are only used to tweak the suppression times
# for the mauve alerter.
#
#
# day_start = 10
# day_end   = 18
#
#
# The periods involved, in minutes:
#
#  working_suppress = 4
#  oncall_suppress  = 10
##