Python logging handler that sends messages in GELF (Graylog Extended Log Format).
Project description
Installing
Using easy_install:
easy_install graypy
Usage
Messages are sent to Graylog2 using a custom handler for the builtin logging library in GELF format:
import logging import graypy my_logger = logging.getLogger('test_logger') my_logger.setLevel(logging.DEBUG) handler = graypy.GELFHandler('localhost', 12201) my_logger.addHandler(handler) my_logger.debug('Hello Graylog2.')
Tracebacks are added as full messages:
import logging import graypy my_logger = logging.getLogger('test_logger') my_logger.setLevel(logging.DEBUG) handler = graypy.GELFHandler('localhost', 12201) my_logger.addHandler(handler) try: puff_the_magic_dragon() except NameError: my_logger.debug('No dragons here.', exc_info=1)
Custom fields
- A number of custom fields are automatically added if available:
function
pid
process_name
thread_name
graypy also supports additional fields to be included in the messages sent to Graylog2. This can be done by using Python’s LoggerAdapter and Filter. In general, LoggerAdapter makes it easy to add static information to your log messages and Filters give you more flexibility, for example to add additional information based on the message that is being logged.
Example using LoggerAdapter:
import logging import graypy my_logger = logging.getLogger('test_logger') my_logger.setLevel(logging.DEBUG) handler = graypy.GELFHandler('localhost', 12201) my_logger.addHandler(handler) my_adapter = logging.LoggerAdapter(logging.getLogger('test_logger'), { 'username': 'John' }) my_adapter.debug('Hello Graylog2 from John.')
Example using Filter:
import logging import graypy class UsernameFilter(logging.Filter): def __init__(self): # In an actual use case would dynamically get this (e.g. from memcache) self.username = "John" def filter(self, record): record.username = self.username return True my_logger = logging.getLogger('test_logger') my_logger.setLevel(logging.DEBUG) handler = graypy.GELFHandler('localhost', 12201) my_logger.addHandler(handler) my_logger.addFilter(UsernameFilter()) mylogger.debug('Hello Graylog2 from John.')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file graypy-0.2.2.tar.gz
.
File metadata
- Download URL: graypy-0.2.2.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77c8a1c2ba092fd8cc8bf83e85ce9052b008fa27fa427a044b3b3fcc1c6c3c41 |
|
MD5 | 0b6a7e1440df051888265c0f487e3836 |
|
BLAKE2b-256 | f8500b8c4b4becfd1b53b61ed6abdebf2967b33060937e0b8be9ed0639f49bb5 |