1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/graphite/supervisord.conf

36 lines
747 B
Plaintext
Raw Normal View History

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