Skip to main content

Python log handler to forward logs to Redis database

Project description

redis-log-handler

Log handler to forward logs to Redis.

Installation Usage Handler classes Documentation

Installation

Installation with pip:

pip install redis-logs

Usage

Basic example

Setup log forwarding to a redis stream:

from rlh import RedisStreamLogHandler

# define your logger
logger = logging.getLogger('my_app')

# define the Redis log handler
handler = RedisStreamLogHandler()
# add the handler to the logger
logger.addHandler(handler)

After that, all the logs emitted with the logger will be forwarded to a Redis Stream; by default the logs are forwarded to a Redis instance running at localhost:6379 in a stream named logs.

Use a different stream name

from rlh import RedisStreamLogHandler

# define your logger
logger = logging.getLogger('my_app')

# define the Redis log handler
handler = RedisStreamLogHandler(stream_name="custom_stream_name")
# add the handler to the logger
logger.addHandler(handler)

Specify a custom Redis client

To use a custom Redis client, you can either define your own client with redis.Redis and then pass it to the handler:

from redis import Redis
from rlh import RedisStreamLogHandler

# define a custom Redis client
client = Redis(host="redis", port=6380, db=1)

# define your logger
logger = logging.getLogger('my_app')

# define the Redis log handler with custom Redis client
handler = RedisStreamLogHandler(redis_client=client)
# add the handler to the logger
logger.addHandler(handler)

Or dirrectly call the handler constructor with your custom Redis settings:

from rlh import RedisStreamLogHandler

# define your logger
logger = logging.getLogger('my_app')

# define the Redis log handler with custom Redis client
handler = RedisStreamLogHandler(host="redis", port=6380, db=1)
# add the handler to the logger
logger.addHandler(handler)

Specify custom log fields to save

By default the handler only saves the logs fieds msg, levelname and created. You can however change this default behaviour by setting your own desired fields (see the full list of fields in logging documentation):

from rlh import RedisStreamLogHandler

# define your logger
logger = logging.getLogger('my_app')

# define the Redis log handler with custom fields
handler = RedisStreamLogHandler(fields=["msg", "name", "module", "levelno"])
# add the handler to the logger
logger.addHandler(handler)

Save LogRecord as pickle format

Logs can also be saved in DB as pickle format:

from rlh import RedisStreamLogHandler

# define your logger
logger = logging.getLogger('my_app')

# define the Redis log handler with as_pkl set to True
handler = RedisStreamLogHandler(as_pkl=True)
# add the handler to the logger
logger.addHandler(handler)

Save LogRecord as pickle format

Logs can also be saved in DB as their JSON representation:

from rlh import RedisStreamLogHandler

# define your logger
logger = logging.getLogger('my_app')

# define the Redis log handler with ad_json set to True
handler = RedisStreamLogHandler(as_json=True)
# add the handler to the logger
logger.addHandler(handler)

This can be useful if you need to re-use the logs with another python program.

Handlers classes

Currently rlh implements two classes of handlers:

RedisStreamLogHandler

Handler used to forward logs to a Redis stream.

RedisPubSubLogHandler

Handler used to publish logs to a Redis pub/sub channel.

:warning: Before using RedisPubSubLogHandler, make sure to define at least one listener to the channel, otherwise the logs emitted will be lost

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

redis-logs-1.2.0.tar.gz (6.0 kB view hashes)

Uploaded Source

Built Distribution

redis_logs-1.2.0-py3-none-any.whl (6.1 kB view hashes)

Uploaded Python 3

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