Last active
March 16, 2021 15:37
-
-
Save kesor/1229681 to your computer and use it in GitHub Desktop.
Django cProfile middleware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.core.exceptions import MiddlewareNotUsed | |
from django.conf import settings | |
import cProfile | |
import pstats | |
import marshal | |
from cStringIO import StringIO | |
class ProfileMiddleware(object): | |
def __init__(self): | |
if not settings.DEBUG: | |
raise MiddlewareNotUsed() | |
self.profiler = None | |
def process_view(self, request, callback, callback_args, callback_kwargs): | |
if settings.DEBUG and ('profile' in request.GET | |
or 'profilebin' in request.GET): | |
self.profiler = cProfile.Profile() | |
args = (request,) + callback_args | |
return self.profiler.runcall(callback, *args, **callback_kwargs) | |
def process_response(self, request, response): | |
if settings.DEBUG: | |
if 'profile' in request.GET: | |
self.profiler.create_stats() | |
out = StringIO() | |
stats = pstats.Stats(self.profiler, stream=out) | |
# Values for stats.sort_stats(): | |
# - calls call count | |
# - cumulative cumulative time | |
# - file file name | |
# - module file name | |
# - pcalls primitive call count | |
# - line line number | |
# - name function name | |
# - nfl name/file/line | |
# - stdname standard name | |
# - time internal time | |
stats.sort_stats('time').print_stats(.2) | |
response.content = out.getvalue() | |
response['Content-type'] = 'text/plain' | |
if 'profilebin' in request.GET: | |
self.profiler.create_stats() | |
response.content = marshal.dumps(self.profiler.stats) | |
filename = request.path.strip('/').replace('/','_') + '.pstat' | |
response['Content-Disposition'] = \ | |
'attachment; filename=%s' % (filename,) | |
response['Content-type'] = 'application/octet-stream' | |
return response |
Nice things. I've mod a little modification to make it working on redirects by adding third "if":
if ('profile' in request.GET or 'profilebin' in request.GET) and 'Location' in response:
del response['Location']
And you actually need one "return response" at the and of method, not in each "if" block.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you! That's really useful.