This package provides a WSGI middleware component which aggregates profiling data across all requests to the WSGI application. It provides a web GUI for viewing profiling data.
Wire up the middleware in your application:
from repoze.profile import ProfileMiddleware
middleware = ProfileMiddleware(
app,
log_filename='/foo/bar.log',
cachegrind_filename='/foo/cachegrind.out.bar',
discard_first_request=True,
flush_at_shutdown=True,
path='/__profile__',
unwind=False,
)
The configuration options are as follows:
- ``log_filename`` is the name of the file to which the accumulated
profiler statistics are logged.
- ``cachegrind_filename`` is the optional name of the file to which
the accumulated profiler statistics are logged in the KCachegrind
format.
- If ``discard_first_request`` to true (the default), then the
middleware discards the statistics for the first request: the
rationale is that there are a bunch of lazy / "first time"
initializations which distort measurement of the application's
normal performance.
- If ``flush_at_shutdown`` is true (the default), profiling data will
be deleted when the middleware instance disappears (via its
__del__). If it's false, profiling data will not be deleted.
- ``path`` is the URL path to the profiler UI. It defaults to
``/__profile__``.
- ``unwind`` is a configuration flag which indicates whether the app_iter
returned by the downstream application should unwound and its results read
into memory. Setting this to true is useful for applications which use
generators or other iterables to do "real work" that you'd like to
profile, at the expense of consuming a lot of memory if you hit a URL
which returns a lot of data. It defaults to false.
Wire the middleware into a pipeline in your Paste configuration, for example:
[filter:profile]
use = egg:repoze.profile
log_filename = myapp.profile
cachegrind_filename = cachegrind.out.myapp
discard_first_request = true
path = /__profile__
flush_at_shutdown = true
unwind = false
...
[pipeline:main]
pipeline = egg:Paste#cgitb
egg:Paste#httpexceptions
profile
myapp
As you exercise your application, the profiler collects statistics about the functions or methods which are called, including timings. Please see the Python profilers documentation for an explanation of the data which the profiler gathers.
Once you have some profiling data, you can visit the configured path in your browser to see a user interface displaying profiling statistics (e.g. http://localhost:8080/__profile__).
Visit http://bugs.repoze.org to report bugs. Visit http://svn.repoze.org to download development or tagged versions.