-
-
Save veverkap/3936628 to your computer and use it in GitHub Desktop.
Upstart config for Graphite's carbon-cache daemon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/etc/init/carbon-cache.conf | |
| description "Carbon server" | |
| start on filesystem or runlevel [2345] | |
| stop on runlevel [!2345] | |
| umask 022 | |
| expect daemon | |
| respawn | |
| pre-start script | |
| test -d /opt/graphite || { stop; exit 0; } | |
| end script | |
| chdir /opt/graphite | |
| # Note the use of a wrapper so we can activate our virtualenv: | |
| exec start-stop-daemon --oknodo --chdir /opt/graphite --user graphite --chuid graphite --pidfile /opt/graphite/storage/carbon-cache-a.pid --name carbon-cache --startas /opt/graphite/bin/run-carbon-cache.sh --start start |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| set -e | |
| HOME=/opt/graphite | |
| . /opt/graphite/.virtualenv/bin/activate | |
| . /opt/graphite/.virtualenv/bin/postactivate | |
| exec /opt/graphite/bin/carbon-cache.py "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment