I want to be able to apply Python applications so that I know:
- Page generation time.
- Percentage of time spent on external queries (mysql, api calls).
- The number of mysql queries that were MySQL queries.
I want this data to be produced (not offline profiling) - because the time spent in different places will be different at boot time.
In PHP, I can do this using XHProf or Instrument-for-php. In Ruby on Rails / .NET / Java, I can do this with a new relic.
Is there such a package for Python or django?
source share