]> git.openstreetmap.org Git - chef.git/blob - cookbooks/munin/templates/default/rrdcached.erb
Improve PDU monitoring
[chef.git] / cookbooks / munin / templates / default / rrdcached.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 # Full path to daemon
4 DAEMON=/usr/bin/rrdcached
5
6 # Optional override flush interval, in seconds.
7 WRITE_TIMEOUT=1800
8
9 # Optional override maximum write delay, in seconds.
10 WRITE_JITTER=1800
11
12 # Optional override number of write_threads
13 #WRITE_THREADS=4
14
15 # Where database files are placed.  If left unset, the default /tmp will
16 # be used.  NB: The daemon will reject a directory that has symlinks as
17 # components.  NB: You may want to have -B in BASE_OPTS.
18 BASE_PATH=/var/lib/munin/
19
20 # Where journal files are placed.  If left unset, journaling will
21 # be disabled.
22 JOURNAL_PATH=/var/lib/munin/rrdcached/
23
24 # FHS standard placement for process ID file.
25 PIDFILE=/var/run/rrdcached.pid
26
27 # FHS standard placement for local control socket.
28 SOCKFILE=/var/run/rrdcached.sock
29
30 # Optional override group that should own/access the local control
31 # socket
32 SOCKGROUP=munin
33
34 # Optional override access mode of local control socket.
35 SOCKMODE=0666
36
37 # Optional unprivileged group to run under when daemon.  If unset
38 # retains invocation group privileges.
39 #DAEMON_GROUP=_rrdcached
40
41 # Optional unprivileged user to run under when daemon.  If unset
42 # retains invocation user privileges.
43 #DAEMON_USER=_rrdcached
44
45 # Network socket address requests.  Use in conjunction with SOCKFILE to
46 # also listen on INET domain sockets.  The option is a lower-case ell
47 # ASCII 108 = 0x6c, and should be repeated for each address.  The
48 # parameter is an optional IP address, followed by an optional port with
49 # a colon separating it from the address.  The empty string is
50 # interpreted as "open sockets on the default port on all available
51 # interfaces", but generally does not pass through init script functions
52 # so use -L with no parameters for that configuration.
53 #NETWORK_OPTIONS="-L"
54
55 # Any other options not specifically supported by the script (-P, -f,
56 # -F, -B).
57 BASE_OPTIONS="-F -B"