bosun.org@v0.0.0-20210513094433-e25bc3e69a1f/docker/data/supervisord.conf (about) 1 [supervisord] 2 nodaemon=true 3 user=root 4 logfile=/var/log/supervisord.log 5 pidfile=/data/supervisord.pid 6 7 [program:bosun] 8 command=/bosun/bosun -c /data/bosun.toml 9 priority=20 10 redirect_stderr=true 11 stdout_logfile=/dev/fd/1 ; redirects the process's stdout to supervisor's so that we can see it in the shell 12 stdout_logfile_maxbytes=0 13 14 [program:tsdbrelay] 15 command=/tsdbrelay/tsdbrelay %(ENV_TSDBRELAY_OPTS)s 16 priority=100 17 redirect_stderr=true 18 stdout_logfile=/dev/fd/1 ; redirects the process's stdout to supervisor's so that we can see it in the shell 19 stdout_logfile_maxbytes=0 20 21 [program:scollector] 22 command=/scollector/scollector -conf %(ENV_DATA_DIR)s/scollector.toml 23 priority=200 24 redirect_stderr=true 25 stdout_logfile=/dev/fd/1 ; redirects the process's stdout to supervisor's so that we can see it in the shell 26 stdout_logfile_maxbytes=0