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 details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

Details for the file redis-logs-1.2.0.tar.gz.

File metadata

  • Download URL: redis-logs-1.2.0.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for redis-logs-1.2.0.tar.gz
Algorithm Hash digest
SHA256 415c4989917955bef5f9ce80c9787446faf895ee8ba431bc8513257731d54d46
MD5 ce690deb05b6c99ffcc56cd30f7e4f88
BLAKE2b-256 cb21f7f3974dab247d1425753d1e89a1611c91329a73dd61b9fcce70f025b7a1

See more details on using hashes here.

File details

Details for the file redis_logs-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: redis_logs-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 6.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for redis_logs-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e0271989be68b033e41c64fc210e4eae7c62c642fd429c951ef64dd444aa465f
MD5 782ebcd4b2430940b7900765c41cddcf
BLAKE2b-256 3b7b06d9945fb9e09e5b9eaa49bcd4cd4a48e675f99958d657bbee0baebcc674

See more details on using hashes here.

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