Skip to main content

No project description provided

Project description

stlog

GitHub Workflow Status Codecov pypi badge

Full documentation

What is it?

STandard STructured LOG (stlog) is Python 3.7+ structured logging library:

  • built on standard python logging and contextvars
  • very easy to configure with "good/opinionated" default values
  • which produces great output for both humans and machines
  • which believes in Twelve-Factor App principles about config and logs
  • dependency free (but can use fancy stuff (colors, augmented traceback...) from the rich library (if installed))

Features

  • standard, standard, standard: all stlog objects are built on standard python logging and are compatible with:
    • other existing handlers, formatters...
    • libraries which are using a standard logger (and stlog can automatically reinject the global context in log records produced by these libraries)
  • easy shorcuts to configure your logging
  • provides nice outputs for humans AND for machines (you can produce both at the same time)
  • structured with 4 levels of context you can choose or combine:
    • a global one set by environment variables (read at process start)
    • a kind of global one (thanks to contextvars)
    • a context linked to the logger object itself (defined during its building)
    • a context linked to the log message itself
  • a lot of configuration you can do with environment variables (in the spirit of Twelve-Factor App principles)

Non-Features

  • "A twelve-factor app never concerns itself with routing or storage of its output stream."
    • we are going to make an exception on this for log files (see roadmap)
    • but we don't want to introduce complex/network outputs like syslog, elasticsearch, loki...
  • standard, standard, standard: we do not want to move away from standard python logging compatibility

What is structured logging?

Structured logging is a technique used in software development to produce log messages that are more easily parsed and analyzed by machines. Unlike traditional logging, which typically consists of free-form text messages, structured logging uses a well-defined format that includes named fields with specific data types.

The benefits of structured logging are many. By using a standard format, it becomes easier to automate the processing and analysis of logs. This can help with tasks like troubleshooting issues, identifying patterns, and monitoring system performance. It can also make it easier to integrate logs with other systems, such as monitoring and alerting tools.

Some common formats for structured logging include JSON, XML, and key-value pairs. In each case, the format includes a set of fields that provide information about the log message, such as the severity level, timestamp, source of the message, and any relevant metadata.

Structured logging is becoming increasingly popular as more developers recognize its benefits. Many logging frameworks and libraries now include support for structured logging, making it easier for developers to adopt the technique in their own projects.

(thanks to ChatGPT)

Quickstart

Installation

pip install stlog

Very minimal usage

import stlog

stlog.info("It works", foo="bar", x=123)
stlog.critical("Houston, we have a problem!")
 

Output (without rich library installed):

2023-03-29T14:48:37Z root [   INFO   ] It works {foo=bar x=123}
2023-03-29T14:48:37Z root [ CRITICAL ] Houston, we have a problem!
 

Output (with rich library installed):

rich output

Basic usage

from stlog import getLogger, setup

# Set the logging default configuration (human output on stderr)
setup()

# Get a logger
logger = getLogger(__name__)
logger.info("It works", foo="bar", x=123)
logger.critical("Houston, we have a problem!")
 

Output (without rich library installed):

2023-03-29T14:48:37Z __main__ [   INFO   ] It works {foo=bar x=123}
2023-03-29T14:48:37Z __main__ [ CRITICAL ] Houston, we have a problem!
 

Output (with rich library installed):

rich output

Usage with context

from stlog import LogContext, getLogger, setup

# Set the logging default configuration (human output on stderr)
setup()

# ...

# Set the (kind of) global execution context
# (thread, worker, async friendly: one context by execution)
# (for example in a wsgi/asgi middleware)
# Note: ExecutionContext is a static class, so a kind of global singleton
LogContext.reset_context()
LogContext.add(request_id="4c2383f5")
LogContext.add(client_id=456, http_method="GET")

# ... in another file/class/...

# Get a logger
logger = getLogger(__name__)
logger.info("It works", foo="bar", x=123)
logger.critical("Houston, we have a problem!")
 

Output (without rich library installed):

2023-03-29T14:48:37Z __main__ [   INFO   ] It works {client_id=456 foo=bar http_method=GET request_id=4c2383f5 x=123}
2023-03-29T14:48:37Z __main__ [ CRITICAL ] Houston, we have a problem! {client_id=456 http_method=GET request_id=4c2383f5}
 

Output (with rich library installed):

rich output

What about if you want to get a more parsing friendly output (for example in JSON on stdout) while keeping the human output on stderr (without any context)?

import sys
from stlog import LogContext, getLogger, setup
from stlog.output import StreamOutput
from stlog.formatter import HumanFormatter, JsonFormatter

setup(
    outputs=[
        StreamOutput(
            stream=sys.stderr,
            formatter=HumanFormatter(exclude_extras_keys_fnmatchs=["*"]),
        ),
        StreamOutput(stream=sys.stdout, formatter=JsonFormatter(indent=4)),
    ]
)

# See previous example for details
LogContext.reset_context()
LogContext.add(request_id="4c2383f5")
LogContext.add(client_id=456, http_method="GET")
logger = getLogger(__name__)
logger.info("It works", foo="bar", x=123)
logger.critical("Houston, we have a problem!")
 

Human output (on stderr):

2023-03-29T14:48:37Z __main__ [   INFO   ] It works
2023-03-29T14:48:37Z __main__ [ CRITICAL ] Houston, we have a problem!
 

JSON ouput (on stdout) for machines:

{
    "client_id": 456,
    "foo": "bar",
    "http_method": "GET",
    "level": "INFO",
    "logger": "__main__",
    "message": "It works",
    "request_id": "4c2383f5",
    "source": {
        "funcName": "<module>",
        "lineno": 21,
        "module": "qs3",
        "path": "/path/filename.py",
        "process": 6789,
        "processName": "MainProcess",
        "thread": 12345,
        "threadName": "MainThread"
    },
    "time": "2023-03-29T14:48:37Z",
    "x": 123
}
{
    "client_id": 456,
    "http_method": "GET",
    "level": "CRITICAL",
    "logger": "__main__",
    "message": "Houston, we have a problem!",
    "request_id": "4c2383f5",
    "source": {
        "funcName": "<module>",
        "lineno": 22,
        "module": "qs3",
        "path": "/path/filename.py",
        "process": 6789,
        "processName": "MainProcess",
        "thread": 12345,
        "threadName": "MainThread"
    },
    "time": "2023-03-29T14:48:37Z"
}
 

Roadmap

  • add file outputs
  • add a full logfmt formatter
  • more configuration options through env vars

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

stlog-0.3.0.tar.gz (20.1 kB view details)

Uploaded Source

Built Distribution

stlog-0.3.0-py3-none-any.whl (21.8 kB view details)

Uploaded Python 3

File details

Details for the file stlog-0.3.0.tar.gz.

File metadata

  • Download URL: stlog-0.3.0.tar.gz
  • Upload date:
  • Size: 20.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.5.0-1025-azure

File hashes

Hashes for stlog-0.3.0.tar.gz
Algorithm Hash digest
SHA256 de10bac49e24a7dd1402326b59bf927cc231583ee1c4330c267b9a9cc44d401c
MD5 8fc622457eddb4390d3efdbe2fd74853
BLAKE2b-256 0fcacb3f50a4105a21d0d1f74b93ccf01f0025a2f40f234efa77b374c87f1d38

See more details on using hashes here.

File details

Details for the file stlog-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: stlog-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 21.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.5.0-1025-azure

File hashes

Hashes for stlog-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2c70c6b0b2e23a72241029cc13d176a7bd03db875e16bb06c641f8b96d370fe8
MD5 78fb581bc73d5cced219c7397afe3baf
BLAKE2b-256 70caa45b3120c4cc0b6501540747609234a908bd80911e362c662c2ca72cbaea

See more details on using hashes here.

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