Python library to add context to logging messages
Project description
Logging with context (contextual logging)
This library provides utilities to easily add context to logging messages and to show them.
Motivation
When adding logging messages it's common to show some contextual information on it not directly related to the message, for example The user <user-id> tried to authenticate with an invalid access token.
Orchestrate a monitorization platform that extracts information from the logs with these kind of messages is really hard:
- Sometimes it's impossible to match a single message with a regular expression due to reuse the same format over and over again (e.g.
The user <user-id> ...). - The programmers don't always follow the same format (e.g.
The user <user-id>,User: <user-id>,user=<user-id>, etc).
This problem can be fixed by using a well-defined format where the log message and the context values of the message are served separately.
The Python logging module in the standard library already provides a way for doing this: instead of adding placeholders to the message, you can use the extra keyword to provide the contextual values of the message, then it's up to the configured formatter to format the values.
This library provides utilities and logging abstractions to ease the use of this practice.
Prerrequisites
Python 3.9 or greater
Install
Install the package logging-with-context.
[!NOTE] The package is named logging-with-context because contextual-logging was rejected by Pypi due to being too similar to an existing project.
How to use it
The expected workflow is:
- set up your logging system.
- initialize the global context.
- add global context values before writing messages or calling methods or functions that may write messages.
- shutdown the global context before shutting down the application (optional, but recommended).
Using the global context as a context manager
After configuring your application's logging, initialize the global context:
import logging
from logging_with_context.global_context import global_context_initialized
def main():
logging.basicConfig(level=logging.INFO) # Or any other way to setup logging.
with global_context_initialized():
# The global context will be available inside this context manager.
Once you've initialized it you can add global context to all the loggers using the context manager add_global_context.
It accepts a dictionary with the values you want to include in all the logging messages, which will get removed from the loggers once the context manager finishes:
import logging
from logging_with_context.global_context import add_global_context
# ... somewhere in your app ...
logger = logging.getLogger(__name__)
with add_global_context({"user_id": user_id, "request_id": request_id}):
# This message will include the keys "user_id" and "request_id" in its `extra` fields.
logger.info("The user tried to authenticate with an invalid access token")
Using the init/shutdown API
In case you can't use the context manager, you can use the manual initialization and shutdown API:
import logging
from logging_with_context.global_context import init_global_context, shutdown_global_context
def main():
logging.basicConfig(level=logging.INFO) # Or any other way to setup logging.
init_global_context()
# ... somewhere in your app ...
logger = logging.getLogger(__name__)
with add_global_context({"user_id": user_id, "request_id": request_id}):
# The `add_global_context` usage is the same.
logger.info("The user tried to authenticate with an invalid access token")
# Your app shutdown routine.
def app_shutdown():
# ... other cleanup ...
shutdown_global_context()
However in complex setups where you need to use specific loggers you'll need to send the same loggers to init_global_context and shutdown_global_context; see Caveats section.
Showing the context
To show the context you need a Formatter that somehow uses the context in the log messages produced.
For example, the logging handler in Python applications running at AWS Lambda handles this automatically by adding the context provided in extra as labels to the log struct, separated from the message.
If you're logging to a StreamHandler you can use logging_with_context.formatters.ExtraTextFormatter, which accepts the same options as the standard library Formatter.
You can use it instead of the default Formatter in your logging setup:
version: 1
formatters:
contextual:
class: logging_with_context.formatters.ExtraTextFormatter
format: '%(levelname)s %(message)s'
handlers:
console:
class: logging.StreamHandler
level: DEBUG
formatter: contextual
stream: ext://sys.stdout
root:
level: DEBUG
handlers: [console]
If you're modifying the logging setup made by other part of an application, you can attach the ExtraTextFormatter and keep using your defined formatting options by passing it the existing Formatter as a parent:
import logging
from logging_with_context.formatters import ExtraTextFormatter
def main():
logging.basicConfig(level=logging.INFO)
for handler in logging.getLogger().handlers:
handler.setFormatter(ExtraTextFormatter(parent=handler.formatter))
ExtraTextFormatter uses the format <message> |context_var_1|value|context_var_2|value|, which is expected to be machine-processing friendly.
It delegates on the repr method of most values to produce the value output; this behavior can be extended to handle custom types.
Caveats
The global context implementation works by attaching a Filter object which reads the context and add it to each message.
This works in simple cases (e.g. CLI applications) but can fall short in application with more complex logging setups which attach handlers to specific loggers other than the root logger.
The API accepts a list of loggers where the Filter will be attached in these cases:
import logging
from logging_with_context.global_context import global_context_initialized
def app_entrypoint():
# Attach the global context to the handlers of the root logger and the "app" logger.
with global_context_initialized(logging.getLogger(), logging.getLogger("app")):
...
API documentation
Use the source, Luke (at least until I've generated proper docs from them).
License
MIT
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file logging_with_context-0.1.0.tar.gz.
File metadata
- Download URL: logging_with_context-0.1.0.tar.gz
- Upload date:
- Size: 22.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7f26b442007751f3af99ed315f202a9c8e905e2b5e8283a289284aefae16b79
|
|
| MD5 |
7c4d051277a2e11bb39d06708b3dcf39
|
|
| BLAKE2b-256 |
9a3b539833b3ea821afba78d5a181d3d857382a284a6b6458626c476921c56f6
|
File details
Details for the file logging_with_context-0.1.0-py3-none-any.whl.
File metadata
- Download URL: logging_with_context-0.1.0-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee46cb090b3bcd296de87ac541da1106995e19780427c38281a6dd663fe5ad25
|
|
| MD5 |
61dc94f195d620234dd252a425ed73ad
|
|
| BLAKE2b-256 |
e6442a445b61a683183bcf52585a8300b549a335d5c0d0254bc9463ff14f936e
|