Debug/Monitor middleware for python wsgi applications - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T04:53:14Zhttp://stackoverflow.com/feeds/question/117986http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/117986/debug-monitor-middleware-for-python-wsgi-applications1Debug/Monitor middleware for python wsgi applicationsPeter Hoffmann2008-09-22T22:22:18Z2009-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#1180372Answer by Armin Ronacher for Debug/Monitor middleware for python wsgi applicationsArmin Ronacher2008-09-22T22:35:22Z2008-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#1181422Answer by Florian Bösch for Debug/Monitor middleware for python wsgi applicationsFlorian Bösch2008-09-22T23:05:34Z2008-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#3075472Answer by ianb for Debug/Monitor middleware for python wsgi applicationsianb2008-11-21T01:35:12Z2008-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 >> 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#10418211Answer by Graham Dumpleton for Debug/Monitor middleware for python wsgi applicationsGraham Dumpleton2009-06-25T01:53:10Z2009-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>