{
"info": {
"author": "Mat Clayton",
"author_email": "mat@mixcloud.com",
"bugtrack_url": null,
"classifiers": [
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
],
"description": "=======================================================\ndjango-speedbar - Page performance profiling for django\n=======================================================\n\n.. image:: https://codeship.com/projects/72818310-a428-0133-4c94-120ced3a4ed3/status?branch=master\n :target: https://codeship.com/projects/129380\n\n.. image:: https://github.com/theospears/django-speedbar/raw/master/docs/images/chrome-speedtracer.png\n\ndjango-speedbar instruments key events in the page loading process (database\nqueries, template rendering, url resolution, etc) and provides summary\ninformation for each page load, as well as integration with Google Chrome\nSpeedTracer to show a tree of the events taking place in a page load.\n\nIt is designed to be run on live sites, with minimal performance impact.\nAlthough all requests are monitored, results are only visible for users\nwith the staff flag.\n\n\nInstallation\n============\n\nTo install django-speedbar add it to your installed apps, urls, and add the\nspeedbar middleware.\n\n.. code:: python\n\n # settings.py\n\n INSTALLED_APPS = [\n # ...\n 'speedbar',\n # ...\n ]\n\n # For best results put speedbar as near to the top of your middleware\n # list as possible. django-speedbar listens to the django request_finished\n # signal so actions performed by middleware higher up the stack will still\n # be recorded, but will not be included in summary data.\n MIDDLEWARE_CLASSES = [\n 'speedbar.middleware.SpeedbarMiddleware',\n # ...\n ]\n\n.. code:: python\n\n # urls.py\n\n urlpatterns = patterns('',\n # ...\n (r'^speedbar/', include('speedbar.urls')),\n # ...\n )\n\n\nTo view the results in SpeedTracer you will also need to install the\n`SpeedTracer plugin