blob: f7a2e01a2f5f40f018a0ec3a04dc830a954c4818 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
--- webapp/graphite/local_settings.py.example.orig 2013-08-21 17:11:04.000000000 +0000
+++ webapp/graphite/local_settings.py.example 2014-02-14 05:02:05.550117395 +0000
@@ -62,6 +62,9 @@
#CONF_DIR = '/opt/graphite/conf'
#STORAGE_DIR = '/opt/graphite/storage'
#CONTENT_DIR = '/opt/graphite/webapp/content'
+CONF_DIR = '%%PREFIX%%/etc/graphite'
+STORAGE_DIR = '/var/db/carbon'
+CONTENT_DIR = '%%DATADIR%%/content'
# To further or fully customize the paths, modify the following. Note that the
# default settings for each of these are relative to CONF_DIR and STORAGE_DIR
@@ -69,6 +72,8 @@
## Webapp config files
#DASHBOARD_CONF = '/opt/graphite/conf/dashboard.conf'
#GRAPHTEMPLATES_CONF = '/opt/graphite/conf/graphTemplates.conf'
+DASHBOARD_CONF = '%%PREFIX%%/etc/graphite/dashboard.conf'
+GRAPHTEMPLATES_CONF = '%%PREFIX%%/etc/graphite/graphTemplates.conf'
## Data directories
# NOTE: If any directory is unreadable in DATA_DIRS it will break metric browsing
@@ -77,7 +82,11 @@
#DATA_DIRS = [WHISPER_DIR, RRD_DIR] # Default: set from the above variables
#LOG_DIR = '/opt/graphite/storage/log/webapp'
#INDEX_FILE = '/opt/graphite/storage/index' # Search index file
-
+WHISPER_DIR = '/var/db/carbon/whisper'
+RRD_DIR = '/var/db/carbon/rrd'
+DATA_DIRS = [WHISPER_DIR, RRD_DIR] # Default: set from the above variables
+LOG_DIR = '/var/log/graphite'
+INDEX_FILE = '/var/db/graphite/index' # Search index file
#####################################
# Email Configuration #
@@ -158,7 +167,12 @@
# }
#}
#
-
+DATABASES = {
+ 'default': {
+ 'NAME': '/var/db/graphite/graphite.db',
+ 'ENGINE': 'django.db.backends.sqlite3',
+ }
+}
#########################
# Cluster Configuration #
|