2017-03-11 12:05:03 +02:00
|
|
|
[supervisord]
|
2017-03-14 10:25:09 +02:00
|
|
|
loglevel = info
|
2017-03-11 12:05:03 +02:00
|
|
|
|
|
|
|
[rpcinterface:supervisor]
|
|
|
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
|
|
|
|
[inet_http_server]
|
2017-03-14 10:25:09 +02:00
|
|
|
port = 0.0.0.0:9001
|
2017-03-11 12:05:03 +02:00
|
|
|
|
|
|
|
[supervisorctl]
|
2017-03-14 10:25:09 +02:00
|
|
|
serverurl = http://127.0.0.1:9001
|
2017-03-11 12:05:03 +02:00
|
|
|
|
|
|
|
[program:carbon-cache]
|
|
|
|
command = carbon-cache.py --debug start
|
|
|
|
redirect_stderr = true
|
|
|
|
autorestart = true
|
2020-03-24 10:26:40 +02:00
|
|
|
priority = 1
|
2017-03-11 12:05:03 +02:00
|
|
|
|
2018-11-05 11:34:16 +02:00
|
|
|
[program:carbon-aggregator]
|
|
|
|
command = carbon-aggregator.py --debug start
|
|
|
|
redirect_stderr = true
|
|
|
|
autorestart = true
|
2020-03-24 10:26:40 +02:00
|
|
|
priority = 2
|
2018-11-05 11:34:16 +02:00
|
|
|
|
2017-03-11 12:05:03 +02:00
|
|
|
[program:graphite-webapp]
|
2020-03-24 10:26:40 +02:00
|
|
|
command = gunicorn -b 127.0.0.1:8000 graphite.wsgi:application
|
2017-03-11 12:05:03 +02:00
|
|
|
redirect_stderr = true
|
|
|
|
autorestart = true
|
2020-03-24 10:26:40 +02:00
|
|
|
priority = 3
|
|
|
|
|
|
|
|
[program:nginx]
|
|
|
|
command = nginx -g "daemon off; pid /run/nginx.pid;"
|
|
|
|
redirect_stderr = true
|
|
|
|
autorestart = true
|
|
|
|
priority = 4
|