dev_dbperf.py 1007 Bytes
Newer Older
1 2 3
"""
This configuration is to turn on the Django Toolbar stats for DB access stats, for performance analysis
"""
4 5 6

# We intentionally define lots of variables that aren't used, and
# want to import all variables from base settings files
7
# pylint: disable=wildcard-import, unused-wildcard-import
8

9 10 11
from .dev import *

DEBUG_TOOLBAR_PANELS = (
12 13 14 15 16 17 18 19
    'debug_toolbar.panels.versions.VersionsPanel',
    'debug_toolbar.panels.timer.TimerPanel',
    'debug_toolbar.panels.settings.SettingsPanel',
    'debug_toolbar.panels.headers.HeadersPanel',
    'debug_toolbar.panels.request.RequestPanel',
    'debug_toolbar.panels.sql.SQLPanel',
    'debug_toolbar.panels.signals.SignalsPanel',
    'debug_toolbar.panels.logging.LoggingPanel',
20
    'debug_toolbar_mongo.panel.MongoDebugPanel'
21
    'debug_toolbar.panels.profiling.ProfilingPanel',
22 23 24 25 26
)

# To see stacktraces for MongoDB queries, set this to True.
# Stacktraces slow down page loads drastically (for pages with lots of queries).
DEBUG_TOOLBAR_MONGO_STACKTRACES = True