diff options
author | mbeierl <mark.beierl@dell.com> | 2017-03-29 21:00:50 -0400 |
---|---|---|
committer | Mark Beierl <mark.beierl@dell.com> | 2017-03-30 06:42:21 +0000 |
commit | f76a4912d312712f06e2ad4b86ee339dea38d4cd (patch) | |
tree | ea28797aae10c2a20c130095ac36ce62a581bd5f /docker/graphite/local_settings.py | |
parent | 5fbde2962c159ace29a7b42bc217f1eed8109808 (diff) |
Use tagged version of graphite
Changes the docker build procedure to use a pip install of a
specific version of graphite so that it doesn't break when
upstream changes occur.
Change-Id: I2316912fc04568c441212087665e384075e409a6
JIRA: STORPERF-110
Signed-off-by: mbeierl <mark.beierl@dell.com>
(cherry picked from commit 1bcbe0bac328e26341ba68341d4b809c32b8242f)
Diffstat (limited to 'docker/graphite/local_settings.py')
-rw-r--r-- | docker/graphite/local_settings.py | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/docker/graphite/local_settings.py b/docker/graphite/local_settings.py new file mode 100644 index 0000000..177d674 --- /dev/null +++ b/docker/graphite/local_settings.py @@ -0,0 +1,42 @@ +# Edit this file to override the default graphite settings, do not edit settings.py + +# Turn on debugging and restart apache if you ever see an "Internal Server Error" page +#DEBUG = True + +# Set your local timezone (django will try to figure this out automatically) +TIME_ZONE = 'UTC' + +# Setting MEMCACHE_HOSTS to be empty will turn off use of memcached entirely +#MEMCACHE_HOSTS = ['127.0.0.1:11211'] + +# Sometimes you need to do a lot of rendering work but cannot share your storage mount +#REMOTE_RENDERING = True +#RENDERING_HOSTS = ['fastserver01','fastserver02'] +#LOG_RENDERING_PERFORMANCE = True +#LOG_CACHE_PERFORMANCE = True + +# If you've got more than one backend server they should all be listed here +#CLUSTER_SERVERS = [] + +# Override this if you need to provide documentation specific to your graphite deployment +#DOCUMENTATION_URL = "http://wiki.mycompany.com/graphite" + +# Enable email-related features +#SMTP_SERVER = "mail.mycompany.com" + +# LDAP / ActiveDirectory authentication setup +#USE_LDAP_AUTH = True +#LDAP_SERVER = "ldap.mycompany.com" +#LDAP_PORT = 389 +#LDAP_SEARCH_BASE = "OU=users,DC=mycompany,DC=com" +#LDAP_BASE_USER = "CN=some_readonly_account,DC=mycompany,DC=com" +#LDAP_BASE_PASS = "readonly_account_password" +#LDAP_USER_QUERY = "(username=%s)" #For Active Directory use "(sAMAccountName=%s)" + +# If sqlite won't cut it, configure your real database here (don't forget to run manage.py syncdb!) +#DATABASE_ENGINE = 'mysql' # or 'postgres' +#DATABASE_NAME = 'graphite' +#DATABASE_USER = 'graphite' +#DATABASE_PASSWORD = 'graphite-is-awesome' +#DATABASE_HOST = 'mysql.mycompany.com' +#DATABASE_PORT = '3306' |