UNKNOWN
Project description
canary is a small library for recording and shipping exceptions from Python to logstash via ZeroMQ.
Example Usage
Assuming logstash is running and bound to a 0mq socket at tcp://0.0.0.0:2120:
$ cat logstash.conf input { zeromq { type => 'python-exception' mode => 'server' topology => 'pushpull' address => 'tcp://0.0.0.0:2120' charset => 'UTF-8' } } output { debug => true }
…to report exceptions thrown by your WSGI application, wrap your WSGI app with canary.middleware.LogStashMiddleware:
from logging.config import dictConfig as load_logging_config
from wsgiref.simple_server import make_server
from wsgiref.util import setup_testing_defaults
from canary.middleware import LogStashMiddleware
def app(environ, start_response):
setup_testing_defaults(environ)
assert True is False
if __name__ == '__main__':
load_logging_config({
'version': 1,
'loggers': {'canary': {'level': 'ERROR', 'handlers': ['zeromq']}},
'handlers': {
'zeromq': {
'level': 'ERROR',
'class': 'canary.handler.ZeroMQHandler',
'address': 'tcp://127.0.0.1:2120',
'formatter': 'logstash'
}
},
'formatters': {
'logstash': {
'()': 'canary.format.LogstashFormatter'
}
}
})
httpd = make_server('', 8080, LogStashMiddleware(app))
print "Serving on port 8080..."
httpd.serve_forever()
Excluding Certain Exceptions
You may want to prevent canary from logging certain types of exceptions. To do so, pass a list of exceptions into the LogStashMiddleware constructor:
app = LogStashMiddleware(app, ignored_exceptions=[SomePrivateException])
Filtering Sensitive Data
canary automatically populates exception logs with contextual data from the WSGI environ. Sometimes, though, this data can contain sensitive details, like customer’s login credentials. canary makes it easy to filter certain request arguments from the logs it produces:
app = LogStashMiddleware(app, sensitive_keys=['password', 'cc_number'])
Development
Source hosted at GitHub. Report issues and feature requests on GitHub Issues.
To fix bugs or add features to canary, a GitHub account is required.
The general practice for contributing is to fork canary and make changes in the next branch. When you’re finished, send a pull request and your patch will be reviewed.
Tests require tox and can be run with $ pip install tox && tox.
All contributions must:
Include accompanying tests.
Include API documentation if new features or API methods are changed/added.
Be (generally) compliant with PEP8.
Not break the tests or build. Before issuing a pull request, ensure that all tests still pass across multiple versions of Python.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file canary-0.1.0.tar.gz
.
File metadata
- Download URL: canary-0.1.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 466f579e4ba4cb2ad1e732f8ba5f749f2126b6cd99c1a20e4b381c376f1c6998 |
|
MD5 | a731e13a05e44eb72408973f53d3a1d3 |
|
BLAKE2b-256 | 4a5ade8dabc0facd7b8246e570381a09768bcdfa2a16d87a55b0225d4f4a49c8 |