Debug/Monitor middleware for python wsgi applications - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T04:53:14Z http://stackoverflow.com/feeds/question/117986 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/117986/debug-monitor-middleware-for-python-wsgi-applications 1 Debug/Monitor middleware for python wsgi applications Peter Hoffmann 2008-09-22T22:22:18Z 2009-06-25T01:53:10Z <p>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.</p> <p>Something like firefox live headers, but for the server side.</p> http://stackoverflow.com/questions/117986/debug-monitor-middleware-for-python-wsgi-applications/118037#118037 2 Answer by Armin Ronacher for Debug/Monitor middleware for python wsgi applications Armin Ronacher 2008-09-22T22:35:22Z 2008-09-22T22:35:22Z <p>That shouldn't be too hard to write yourself as long as you only need the headers. Try that:</p> <pre><code>import sys def log_headers(app, stream=None): if stream is None: stream = sys.stdout def proxy(environ, start_response): for key, value in environ.iteritems(): if key.startswith('HTTP_'): stream.write('%s: %s\n' % (key[5:].title().replace('_', '-'), value)) return app(environ, start_response) return proxy </code></pre> http://stackoverflow.com/questions/117986/debug-monitor-middleware-for-python-wsgi-applications/118142#118142 2 Answer by Florian Bösch for Debug/Monitor middleware for python wsgi applications Florian Bösch 2008-09-22T23:05:34Z 2008-09-22T23:14:02Z <p>The middleware</p> <pre><code>from wsgiref.util import request_uri import sys def logging_middleware(application, stream=sys.stdout): def _logger(environ, start_response): stream.write('REQUEST\n') stream.write('%s %s\n' %( environ['REQUEST_METHOD'], request_uri(environ), )) for name, value in environ.items(): if name.startswith('HTTP_'): stream.write(' %s: %s\n' %( name[5:].title().replace('_', '-'), value, )) stream.flush() def _start_response(code, headers): stream.write('RESPONSE\n') stream.write('%s\n' % code) for data in headers: stream.write(' %s: %s\n' % data) stream.flush() start_response(code, headers) return application(environ, _start_response) return _logger </code></pre> <p>The test</p> <pre><code>def application(environ, start_response): start_response('200 OK', [ ('Content-Type', 'text/html') ]) return ['Hello World'] if __name__ == '__main__': logger = logging_middleware(application) from wsgiref.simple_server import make_server httpd = make_server('', 1234, logger) httpd.serve_forever() </code></pre> <p>See also the <a href="http://werkzeug.pocoo.org/documentation/debug" rel="nofollow">werkzeug debugger</a> Armin wrote, it's usefull for interactive debugging.</p> http://stackoverflow.com/questions/117986/debug-monitor-middleware-for-python-wsgi-applications/307547#307547 2 Answer by ianb for Debug/Monitor middleware for python wsgi applications ianb 2008-11-21T01:35:12Z 2008-11-21T01:35:12Z <p>If you want Apache-style logs, try <a href="http://svn.pythonpaste.org/Paste/trunk/paste/translogger.py" rel="nofollow">paste.translogger</a></p> <p>But for something more complete, though not in a very handy or stable location (maybe copy it into your source) is <a href="http://svn.pythonpaste.org/Paste/WSGIFilter/trunk/wsgifilter/proxyapp.py" rel="nofollow">wsgifilter.proxyapp.DebugHeaders</a></p> <p>And writing one using <a href="http://pythonpaste.org/webob" rel="nofollow">WebOb</a>:</p> <pre><code>import webob, sys class LogHeaders(object): def __init__(self, app, stream=sys.stderr): self.app = app self.stream = stream def __call__(self, environ, start_response): req = webob.Request(environ) resp = req.get_response(self.app) print &gt;&gt; self.stream, 'Request:\n%s\n\nResponse:\n%s\n\n\n' % (req, resp) return resp(environ, start_response) </code></pre> http://stackoverflow.com/questions/117986/debug-monitor-middleware-for-python-wsgi-applications/1041821#1041821 1 Answer by Graham Dumpleton for Debug/Monitor middleware for python wsgi applications Graham Dumpleton 2009-06-25T01:53:10Z 2009-06-25T01:53:10Z <p>The mod_wsgi documentation provides various tips on debugging which are applicable to any WSGI hosting mechanism and not just mod_wsgi. See:</p> <p><a href="http://code.google.com/p/modwsgi/wiki/DebuggingTechniques" rel="nofollow">http://code.google.com/p/modwsgi/wiki/DebuggingTechniques</a></p> <p>This includes an example WSGI middleware that captures request and response.</p>