I'm searching a wsgi middleware which I can warp around a wsgi applications and which lets me monitor incoming and outgoing http requests and header fields.
Something like firefox live headers, but for the server side.
|
I'm searching a wsgi middleware which I can warp around a wsgi applications and which lets me monitor incoming and outgoing http requests and header fields. Something like firefox live headers, but for the server side.
| |||
|
feedback
|
|
The middleware
The test
See also the werkzeug debugger Armin wrote, it's usefull for interactive debugging. | ||||
|
feedback
|
|
That shouldn't be too hard to write yourself as long as you only need the headers. Try that:
| |||
feedback
|
|
If you want Apache-style logs, try paste.translogger But for something more complete, though not in a very handy or stable location (maybe copy it into your source) is wsgifilter.proxyapp.DebugHeaders And writing one using WebOb:
| |||
|
feedback
|
|
The mod_wsgi documentation provides various tips on debugging which are applicable to any WSGI hosting mechanism and not just mod_wsgi. See: http://code.google.com/p/modwsgi/wiki/DebuggingTechniques This includes an example WSGI middleware that captures request and response. | |||
|
feedback
|
|
My WebCore project has a bit of middleware that logs the entire WSGI environment (thus Beaker sessions, headers, etc.) for the incoming request, headers for outbound responses, as well as performance information to a MongoDB database. Average overhead is around 4ms. The module has been removed from the core package, but hasn’t yet been integrated into its own. The current version as of this answer is available in the Git history: | |||||
feedback
|