forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdbquery.py
More file actions
35 lines (31 loc) · 1.48 KB
/
dbquery.py
File metadata and controls
35 lines (31 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright The IETF Trust 2014-2019, All Rights Reserved
#import logging
from django.db import connection
from django.utils.log import getLogger # type: ignore
logger = getLogger(__name__)
#logger.setLevel(logging.DEBUG)
#logger.addHandler(logging.FileHandler(settings.SECR_LOG_FILE))
class QueryCountDebugMiddleware(object):
"""
This middleware will log the number of queries run
and the total time taken for each request (with a
status code of 200). It does not currently support
multi-db setups.
"""
def process_response(self, request, response):
#assert False, request.path
logger.debug('called middleware. %s:%s' % (request.path,len(connection.queries)))
if response.status_code == 200:
total_time = 0
#for query in connection.queries:
# query_time = query.get('time')
# if query_time is None:
# django-debug-toolbar monkeypatches the connection
# cursor wrapper and adds extra information in each
# item in connection.queries. The query time is stored
# under the key "duration" rather than "time" and is
# in milliseconds, not seconds.
# query_time = query.get('duration', 0) / 1000
# total_time += float(query_time)
logger.debug('%s: %s queries run, total %s seconds' % (request.path,len(connection.queries), total_time))
return response