Skip to main content

canary is a small library for recording and shipping exceptions from Python to logstash via ZeroMQ.

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

canary-0.1.2.tar.gz (7.6 kB view details)

Uploaded Source

File details

Details for the file canary-0.1.2.tar.gz.

File metadata

  • Download URL: canary-0.1.2.tar.gz
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for canary-0.1.2.tar.gz
Algorithm Hash digest
SHA256 274cd9c81a58ac7e4a5ab9d12d4da40879828a80a34006aac9f8d61a8e8d70b1
MD5 82c23e1dc24f0e7ac37f2d545f6aad91
BLAKE2b-256 47d5fa6b080d707fb6a9ab60e65c6956ebf290d807066fa5c790f41d298e5424

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page