Skip to main content

Easy way to integrate Rollbar into daiquiri

Project description

daiquiri-rollbar

Easy way to use Rollbar with daiquiri.

The level of the messages is preserved. So logger.info('smth') will be registered as info in Rollbar. If you configure daiquiri to log messages above a certain level, only those messages will be sent to Rollbar. You can also configure the RollbarOutput to only log messages for a level that is different from the global configuration.

Exception should be logged with logger.exception. The stacktrace will then be sent to Rollbar with report_exc_info.

To use it, just add RollbarOutput to the list of daiquiri outputs and use daiquiri normally:

import logging
from daiquiri_rollbar import RollbarOutput

rollbar_output = RollbarOutput(access_token='access_token')
daiquiri.setup(
    level=logging.INFO,
    outputs=(rollbar_output,)
)
logger = daiquiri.getLogger(__name__)

logger.info('Test')

To log message of a certain level:

import logging
from daiquiri_rollbar import RollbarOutput

rollbar_output = RollbarOutput(access_token='access_token', level=logging.WARNING)
daiquiri.setup(
    level=logging.INFO,
    outputs=(rollbar_output,)
)
logger = daiquiri.getLogger(__name__)

logger.info('Test')

By default, log messages will be logged for production. To change the environment, build RollbarOutput like this:

rollbar_output = RollbarOutput(access_token='access_token', environment='development')

If you don’t pass an access token, RollbarOutput will not log anything.

Error messages from the rollbar module are not sent into Rollbar to prevent an infinite loop. They are sent to stderr instead. They will be logged by other outputs if you have any.

Changelog

0.2.1 (2017-08-15)

  • Improve documentation

0.2.0 (2017-08-15)

  • Log messages into rollbar

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

daiquiri-rollbar-0.2.1.tar.gz (5.0 kB view details)

Uploaded Source

File details

Details for the file daiquiri-rollbar-0.2.1.tar.gz.

File metadata

File hashes

Hashes for daiquiri-rollbar-0.2.1.tar.gz
Algorithm Hash digest
SHA256 b7839909613de3d6b4ce5c588e3bea06d72894714495219a0f15e865ee0af63d
MD5 a95cb518cd68e0572bf58f1005bae62e
BLAKE2b-256 f3f7fc71e4bb95f480a6dbbda4912662a0a61b3e09ec53c92483afd59b566670

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