You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
Hello everyone
Django-debug-toolbar and Django-silk are two famous tools for profiling HTTP requests. Is it possible to analyze a celery task or any other function inside the code? for instance, I have a celery task like this:
def main_task():
while _condition:
logic()
sleep(_t)
return True
I need some information like duplicate and similar queries in logic() for every loop.
Unfortunately no one answered similar question to me in Stackoverflow.