areciboware 1.0b1
Arecibo error logging WSGI middleware
areciboware is a small WSGI middleware component that will report unhandled exceptions to an Arecibo instance. This provides a convenient system to collect and analyse errors in an application.
Usage
To use areciboware you need to have a running Arecibo instance. You will needs its URL and its public key to setup the middleware.
paste.deploy
If you are using Paste Deployment to start your website you can define an arecibo filter in your .ini file:
[filter:arecibo]
use = egg:areciboware#main
url = http://my-arecibo.appspot.com/v/1/
account = your-arecibo-public-key
[app:yourapp]
..
[pipeline:main]
pipeline =
arecibo
yourapp
Manual
You can also manually add the middleware to your WSGI pipeline in your python code. Here is a simple example:
from areciboware.middleware import AreciboMiddleware
app = AreciboMiddleware(app, url="http://my-arecibo.appsot.com/v/1/",
account="your-arecibo-public-key")
return app
Changelog
1.0b1 - July 27, 2010
- Include request data with all CGI and WSGI variables in reports. [wichert]
- Include username in report if REMOTE_USER is set in the environ. [wichert]
1.0a1 - July 14, 2010
- First public release. [wichert]
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| areciboware-1.0b1.tar.gz (md5) | Source | 2010-07-27 | 3KB | 576 | |
- Author: Wichert Akkerman
- Home Page: http://pypi.python.org/pypi/areciboware
- Keywords: arecibo WSGI middleware
- License: BSD
-
Categories
- Development Status :: 4 - Beta
- Intended Audience :: Developers
- Intended Audience :: System Administrators
- License :: OSI Approved :: BSD License
- Operating System :: OS Independent
- Programming Language :: Python :: 2
- Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
- Topic :: Software Development :: Libraries :: Python Modules
- Package Index Owner: wichert
- DOAP record: areciboware-1.0b1.xml
