jazzband / django-silk

Silky smooth profiling for Django

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

question: How overall is calculated?

imperiumdrive opened this issue · comments

Hi,
I can see that one of my requests took 43633ms to complete in "Overall":
image
But it only took 15ms for the queries and the CProfile shows that it only took 43.619 seconds for all the function calls:
image
So how is the "overall" calculated and where are the 43633ms coming from?
Thanks

Hi @imperiumdrive, obviously it is 43 619ms of code running + 15ms of query execution which totals to overall 43 634 (some rounding made it to 43 633). You may have some ineffective loops in your code.