How to profile django application with respect to

2019-02-03 10:57发布

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:

  • A stack-trace type output with time of execution for each module called to render the page.
  • I want to realize what part of the whole page rendering process is taking the time ?
  • Also, what part is consuming how much CPU [ MOST IMPORTANT ] ?

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

Any other django-app that can do that ?

5条回答
三岁会撩人
2楼-- · 2019-02-03 11:24

It's not profiling , but i generally simply use a view to calculate the execution time , it works also for views that need user login, it displays execution time in a simple page

 def test(request):
     from django.test.client import Client
     import time

     c = Client()

     #client login if needed
     response = c.post('/login/', {'username': 'admin', 'password': 'password'})

     start = time.time()
     response = c.get('/pagetotest/')

     #print response
     #print 'Finished, time: ', time.time() - start # output to console
     end=time.time() - start
     return render(request,'loadingtime.html',{'time':end})

it's a good start i think , hope it will help someone

查看更多
The star\"
3楼-- · 2019-02-03 11:25

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 !

查看更多
女痞
4楼-- · 2019-02-03 11:30

django-silk can help.

  • Install it with: pip install django-silk
  • Add it in settings.py:
MIDDLEWARE = [
    ...
    'silk.middleware.SilkyMiddleware',
    ...
]

INSTALLED_APPS = (
    ...
    'silk'
)
  • Add the route in urls.py:
urlpatterns += [url(r'^silk/', include('silk.urls', namespace='silk'))]
  • Finally, create the adequate tables in the database with:
python manage.py makemigrations
python manage.py migrate

You can then browse in your internet browser to /silk to find the page requested there.

查看更多
贪生不怕死
5楼-- · 2019-02-03 11:41

I would recommend writing some integration tests instead, or at least using the built in testing client to automate requests and put lots of debugging statements in the views

Django has a built in testing client:

from django.test.client import Client
c = Client()
response = c.post('/slow_url/')

And then in your view:

def slow_url(request):
    start = time.time()
    print 'Started db query'
    result = SomeComplexModel.objects.all()
    print 'Finished db query, took ', time.time() - start
    return render('some_complex_template.html', {'result': result})  

Automating the process of making requests and being able to replicate them again and again while you make small changes is how you will improve your code. CPU time can be worked out if you measure the time it takes to run each function. It won't take you long to hone in on the part that is actually chewing up resources.

查看更多
乱世女痞
6楼-- · 2019-02-03 11:42

You can try the profiling panel of the django-debug-toolbar (make sure you use the application's latest version from github). Enable the panel like so in your settings.py:

DEBUG_TOOLBAR_PANELS = (
  'debug_toolbar.panels.version.VersionDebugPanel',
  'debug_toolbar.panels.timer.TimerDebugPanel',
  'debug_toolbar.panels.profiling.ProfilingDebugPanel',
)

This existence of this panel is not documented on the readme of django-debug-toolbar; that's why I answer here in the first place.

EDIT: If you're using django-debug-toolbar v1.0 and above the panel has been renamed to debug_toolbar.panels.profiling.ProfilingPanel and is now documented here http://django-debug-toolbar.readthedocs.org/en/1.0/panels.html#non-default-built-in-panels. It's still not enabled by default.

查看更多
登录 后发表回答