Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Add statsd + basic data, bug 698799
Browse files Browse the repository at this point in the history
  • Loading branch information
davedash committed Nov 3, 2011
1 parent c73acfe commit faec9c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion settings.py
Expand Up @@ -251,7 +251,8 @@ def JINJA_CONFIG():
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',

'commonware.response.middleware.GraphiteMiddleware',
'commonware.response.middleware.GraphiteRequestTimingMiddleware',
'commonware.middleware.FrameOptionsHeader',
)

Expand Down
4 changes: 3 additions & 1 deletion settings_local.py-dist
Expand Up @@ -35,8 +35,10 @@ DATABASES = {
}
}


MIDDLEWARE_CLASSES += (
# 'debug_toolbar.middleware.DebugToolbarMiddleware'
)

STATSD_HOST = 'localhost'
STATSD_PORT = 8125
STATSD_PREFIX = 'input'

0 comments on commit faec9c3

Please sign in to comment.