A JSON logger for map colonies project
Project description
json-logger
Dependencies
install python-json-logger
pip3 install python-json-logger
Usage Example
NOTICE: the example assumes that logger.py is in the same directory as your calling module, else a different import method should be used
import os, sys
from logger import JSONLogger
# logging config yaml file path
LOG_CONFIG_PATH = os.environ.get('LOG_CONFIG_PATH', 'log.yaml')
APP_NAME = 'my-service'
# there should be a formatter that uses these fields in configuration yaml (e.g. format: '%(timestamp)s %(service)s')
additional_constant_fields = {'service': APP_NAME}
# NOTICE: there should be a matching logger name in configuration yaml (e.g. main-debug)
log = JSONLogger('main-info', LOG_CONFIG_PATH, additional_constant_fields).get_logger()
log.critical('system crashed')
log.error('incorrect input')
log.warn('not ready')
log.info('some info', extra={'action_id': 3}) # extra fields
log.debug('some info', extra={'action_id': 4}) # will not be logged because logger level set to INFO ('main-info')
Example Configuration YAML
version: 1
formatters:
brief:
format: '%(message)s'
json:
format: '%(timestamp)s %(service)s %(loglevel)s %(message)s'
class: logger.CustomJsonFormatter
handlers:
console:
class: logging.StreamHandler
formatter: json
stream: ext://sys.stdout
file:
class : logging.handlers.RotatingFileHandler
formatter: json
filename: logfile.log # log files full path
maxBytes: 5242880 # 5 MB
backupCount: 10
loggers:
main-debug:
handlers: [console, file]
level: DEBUG
main-info:
handlers: [console, file]
level: INFO
main-warning:
handlers: [console, file]
level: WARNING
main-error:
handlers: [console, file]
level: ERROR
main-critical:
handlers: [console, file]
level: CRITICAL
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
Built Distribution
Close
Hashes for MapColoniesJSONLogger-0.0.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 852f360d1eec7db9e0794fee8a801490fa63aea4f21087c28266b439a6921c92 |
|
MD5 | 4cb75106302ed626b12b06a17760d363 |
|
BLAKE2b-256 | 710602b3c073af6df68bc164015b53cde4001a9b0f93cb4a2cfa6e2c7582c0b0 |
Close
Hashes for MapColoniesJSONLogger-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f345c382b6702bed6c0d9f59be585fb19230d7fa847d993060ae2135c2acbb6c |
|
MD5 | d3938b7d59847fa95a203b77680fd899 |
|
BLAKE2b-256 | 8cae5d376a883eb5ebc069750c314a00b122dfba0c5db8260cb48eea35964af1 |