Skip to main content

Redis pub/sub logging handler for python

Project description

==========================================================================================
RedisLogs - A simplified version of RedisLog that works with Flask in a more intuitive way
==========================================================================================

A logging handler for Flask that publishes log messages using Redis's pub/sub system. You can use this to store python logs into Redis. Inspired on the package: https://github.com/jedp/python-redis-log by Jed Parsons.

Installation
------------

The current stable release ::

pip install flask_redis_logs


Requirements
------------

- redis

Usage
-----

::

>>> from redislogs.handlers import RedisHandler
>>> redis_handler = RedisHandler(
>>> host=[ Redis Host ],
>>> port=[ Redis Port ],
>>> db=[ Redis DB ],
>>> log_key=[ Redis Channel ]
>>> )
>>> redis_handler.setLevel(logging.INFO)
>>> app.logger.addHandler(redis_handler)
>>> app.logger.info("Infor log")

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

flask_redis_log-0.0.1.tar.gz (2.6 kB view hashes)

Uploaded Source

Supported by

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