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
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
graypy-0.1.tar.gz
(2.3 kB
view details)
File details
Details for the file graypy-0.1.tar.gz
.
File metadata
- Download URL: graypy-0.1.tar.gz
- Upload date:
- Size: 2.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43ff7e4f9ebd8611078a2c4c78a64f3dbf54cba8a3d07b786a46d1587c1ec997 |
|
MD5 | 465ea028c5353774b1bd9dce3de5e9e8 |
|
BLAKE2b-256 | 8b6d9922ddc03d951229ae6e01d9fcd006edf90392dd29cbdd03b9fe2c7ee09c |