Skip to main content

JSON formatter for python logging

Project description

JSON formatter for logging

pypi version Build status Coverage Code style: black Number of tests Number of downloads

This module provides a JSON formatter for the python logging module that will format to JSON formatted string.

Using this formatter allows to have the proper format for logging to Splunk or ElasticSearch, but it can also be used for logging to stdout as a string is issued.

Features

Adding additional fields and values

You can add fields to every message that is being logged. To do so, specify the fields parameter to the logging_json.JSONFormatter instance.

It must be a dictionary where keys are the keys to be appended to the resulting JSON dictionary (if not already present) and the values can be one of the following:

  • An attribute of the logging record (non-exhaustive list can be found on the python logging documentation).
  • If not found on the record, the value will be linked to the key.

Logging exceptions, a specific case

If an exception is loggued, the exception key will be appended to the resulting JSON dictionary.

This dictionary will contains 3 keys:

  • type: The name of the exception class (useful when the message is blank).
  • message: The str representation of the exception (usually the provided error message).
  • stack: The stack trace, formatted as a string.

Logging with a dictionary

This formatter allows you to log dictionary as in the following:

import logging

logging.info({"key": "value", "other key": "other value"})

The resulting JSON dictionary will be the one you provided (with the additional fields).

Logging with anything else (such as a string)

Anything not logged using a dictionary will be handled by the standard formatter and it can result in one of the 2 output:

  • A JSON dictionary, if additional fields are set, with the message available in the msg key of the resulting JSON dictionary.
  • The formatted record, if no additional fields are set.

This handles the usual string logging as in the following:

import logging

logging.info("This is my message")

Configuration

You can create a formatter instance yourself as in the following or you can use a logging configuration.

import logging_json

formatter = logging_json.JSONFormatter(fields={
    "level_name": "levelname",
    "thread_name": "threadName",
    "process_name": "processName"
})

Using logging.config.dictConfig

You can configure your logging as advertise by python, by using the logging.config.dictConfig function.

dict configuration

import logging.config
import logging_json
import sys

formatter = logging_json.JSONFormatter(fields={
    "level_name": "levelname",
    "thread_name": "threadName",
    "process_name": "processName"
})
handler = logging.StreamHandler(stream=sys.stdout)
handler.setFormatter(formatter)

logging.config.dictConfig({
    "version": 1,
    "formatters": {
        "json": formatter
    },
    "handlers": {
        "standard_output": handler,
    },
    "loggers": {
        "my_app": {"level": "DEBUG"}
    },
    "root": {
        "level": "INFO",
        "handlers": ["standard_output"]
    }
})

YAML logging configuration

You can use YAML to store your logging configuration, as in the following sample:

import logging.config
import yaml

with open("path/to/logging_configuration.yaml", "r") as config_file:
    logging.config.dictConfig(yaml.load(config_file))

Where logging_configuration.yaml can be a file containing the following sample:

version: 1
formatters:
  json:
    '()': logging_json.JSONFormatter
    fields:
      level_name: levelname
      thread_name: threadName
      process_name: processName
handlers:
  standard_output:
    class: logging.StreamHandler
    formatter: json
    stream: ext://sys.stdout
loggers:
  my_app:
    level: DEBUG
root:
  level: INFO
  handlers: [standard_output]

How to install

  1. python 3.6+ must be installed
  2. Use pip to install module:
python -m pip install logging_json

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

logging_json-0.0.1.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

logging_json-0.0.1-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file logging_json-0.0.1.tar.gz.

File metadata

  • Download URL: logging_json-0.0.1.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.7.1

File hashes

Hashes for logging_json-0.0.1.tar.gz
Algorithm Hash digest
SHA256 975f6eb302168a1422fef91315d9ad2a133f1a486ec9819451ef453db012a7d3
MD5 05e2d16129295131fda54002439f858b
BLAKE2b-256 cb72757cd993c83ca05a5151d260eb403f02126789c67db3ed4c1ff1a0ff55d4

See more details on using hashes here.

File details

Details for the file logging_json-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: logging_json-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 5.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.7.1

File hashes

Hashes for logging_json-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 dde1a91f6d2ac5a016855167230177f9e835d5d867803bbeb92aff70f741fc6a
MD5 7bd4ceb42544931f3a9d24634148306d
BLAKE2b-256 bfb3f75567976e42af369cbc66f7ccf94975a70f7fa61a59c6285635de9c887b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page