PageRenderTime 18ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/djangologging/docs/Profiling.wiki

http://django-logging.googlecode.com/
Unknown | 42 lines | 29 code | 13 blank | 0 comment | 0 complexity | dd89ede007f0789cc9ddbfc1227f716d MD5 | raw file
Possible License(s): BSD-3-Clause
  1. #summary Information about the profiling branch
  2. #labels Featured
  3. = Introduction =
  4. This page describes the *profiling* branch for _django-logging_. This introduces
  5. additional functionality to make use of the Python's
  6. [http://docs.python.org/lib/profile.html profiling capabilities].
  7. = Installation =
  8. The branch can be checked out from:
  9. {{{
  10. svn co http://django-logging.googlecode.com/svn/branches/profiling/djangologging/ djangologging
  11. }}}
  12. The basic installation instructions are the same as those on the [Overview]
  13. page. The new `LOGGING_PROFILER` setting must also be provided to enable
  14. profiling:
  15. || *Variable* || *Default* || *Description* ||
  16. || `LOGGING_PROFILER` || `None` || To enable profiling, set this to a supported profiler. Currently this can be either `hotshot` or `cProfile`. ||
  17. = Todo =
  18. * Store the profile data in a FIFO queue so that only data from the last _n_ requests is kept.
  19. * Make the graph thumbnail draggable for fast panning.
  20. * Allow sorting, grouping, etc. on the raw statistics.
  21. * Add `trans` and `blocktrans` tags to the new templates.
  22. = Feedback =
  23. This branch is effectively a beta pre-release, so I'm keen to get feedback and
  24. ideas for what it should do. If you spot any bugs or want to make a suggestion,
  25. please use the
  26. [http://code.google.com/p/django-logging/issues/list issue tracker], or
  27. [http://www.nevett.org/contact contact me directly].
  28. Thanks,
  29. Fraser