How i can determine the number of calls does by my app in one view call. I intent to make a decorator with this intention.
@trace_db_calls
def my_view(request):
#code
return HttpResponse('done')
At this moment I am investigating how to do it, regards