pythondjangoperformancecpu-speeddjango-debug-toolbar

How to profile django application with respect to execution time?


My Django application is insanely slow, I want to figure out what is taking time :

I tried Django-debug-toolbar but was unable to find a panel that can give me the break-up of the load time.

My requirements:

Can django-debug-toolbar do that ? [ What panel ? ]

Any other django-app that can do that ?


Solution

  • Finally figured out a way to profile my django webapp :

    Following 2 django snippets provide middleware that profile the whole flow and outputs if request has prof in GET keys :

    Plain and simple profiling - Saved my day !