| 123456789101112131415161718192021222324252627282930313233343536 |
- #!/bin/bash
- conf_dir=/etc/graphite-statsd/conf
- # auto setup graphite with default configs if /opt/graphite is missing
- # needed for the use case when a docker host volume is mounted at an of the following:
- # - /opt/graphite
- # - /opt/graphite/conf
- # - /opt/graphite/webapp/graphite
- graphite_dir_contents=$(find /opt/graphite -mindepth 1 -print -quit)
- graphite_conf_dir_contents=$(find /opt/graphite/conf -mindepth 1 -print -quit)
- graphite_webapp_dir_contents=$(find /opt/graphite/webapp/graphite -mindepth 1 -print -quit)
- graphite_storage_dir_contents=$(find /opt/graphite/storage -mindepth 1 -print -quit)
- if [[ -z $graphite_dir_contents ]]; then
- # git clone -b 1.0.2 --depth 1 https://github.com/graphite-project/graphite-web.git /usr/local/src/graphite-web
- cd /usr/local/src/graphite-web && python ./setup.py install
- fi
- if [[ -z $graphite_storage_dir_contents ]]; then
- /usr/local/bin/django_admin_init.exp
- fi
- if [[ -z $graphite_conf_dir_contents ]]; then
- cp -R $conf_dir/opt/graphite/conf/*.conf /opt/graphite/conf/
- fi
- if [[ -z $graphite_webapp_dir_contents ]]; then
- cp $conf_dir/opt/graphite/webapp/graphite/local_settings.py /opt/graphite/webapp/graphite/local_settings.py
- fi
- # auto setup statsd with default config if /opt/statsd is missing
- # needed for the use case when a docker host volume is mounted at an of the following:
- # - /opt/statsd
- statsd_dir_contents=$(find /opt/statsd -mindepth 1 -print -quit)
- if [[ -z $statsd_dir_contents ]]; then
- git clone -b v0.7.2 https://github.com/etsy/statsd.git /opt/statsd
- cp $conf_dir/opt/statsd/config.js /opt/statsd/config.js
- fi
|