blob: 01799ab55cc2fa5d2d03b65baa593822069a4a08 (
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
|
[unix_http_server]
file=/run/supervisord.sock
[supervisord]
user = root
nodaemon = true
logfile_maxbytes = 10MB
logfile_backups = 0
pidfile = /tmp/supervisord.pid
logfile = /tmp/supervisord.log
environment = GRAPHITE_STORAGE_DIR='/opt/graphite/storage',GRAPHITE_CONF_DIR='/opt/graphite/conf'
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[supervisorctl]
serverurl=unix:///run/supervisord.sock
[eventlistener:stdout]
command = supervisor_stdout
buffer_size = 100
events = PROCESS_LOG
result_handler = supervisor_stdout:event_handler
[include]
files = /etc/supervisor.d/*.ini
|