Skip to main content

A log handler for the Python logging module, emitting all logs to specific Redis channels

Project description

# redis-log-handler
Handler for the std logging module which puts logs through to Redis.

## How to use
Each handler needs a channel name, and where needed a specified port, password or host.
Handlers open a connection to a channel, so they need to be closed after use or the channel will continue to exist.

Logging can be configured globally:
```python
log_handler = RedisLogHandler('ch:channel')
logging.basicConfig(handlers=(log_handler,), level=logging.INFO)
logging.info('Test-message on channel.')

log_handler.close()
```

Or as a specific standalone logger:
```python
log_handler = RedisLogHandler('ch:channel')
logger = logging.getLogger('name')
logger.addHandler(log_handler)
logger.setLevel('WARNING')

logger.warning('Warning message')

log_handler.close()
```

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-log-handler-0.0.1.dev7.tar.gz (3.8 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