Logging helpers.
Project description
logkit-py
Logging helpers.
Installation
poetry add outcome-logkit
Usage
logkit is a wrapper around structlog that configures it with the following:
- Sets log level based on
APP_ENVenvironment variable - Automatically outputs Stackdriver-compliant JSON to stdout when running in a GCP environment (AppEngine, CloudRun, GKE, etc.)
- Intercepts all messages sent to the standard library loggers and processes them transparently
- Configures structlog to provide async-safe context values
Initialization
logkit needs to be initialized before being used. This initialization configures structlog and sets up the intercept for the standard logging library.
Note It's important to do this as early as possible in the program to ensure that no other imports start logging messages before the intercept has been configured. You can use # isort:skip to ensure isort doesn't reorder the import.
# Important that this happens before any other imports
from outcome.logkit import init_logging # isort:skip
init_logging() # isort:skip
Log Level
You can provide a level parameter to init_logging to define the default log-level. You can use the built-in log levels from the logging module (e.g. logging.INFO). If you don't provide a level, it will automatically be set based on the env.is_prod() method from the outcome-utils package.
import logging
init_logging(level=logging.INFO)
Custom Processors
You can provide an array of your own structlog processors to init_logging. They will be merged into the processors provided by logkit.
init_logging(processors=[my_custom_processor])
Logging
To log with logkit, you can either use the standard library logging, or use the structlog interface. Both can be used to pass structured data to the log entries. Using the structlog interface is marginally faster, since all the messages sent to the standard logging library are sent to structlog anyway.
import logging
from outcome.logkit import get_logger
# Using the standard library
logger = logging.getLogger(__name__)
logger.info('my_message', user_id='1')
# Using the structlog interface
structured_logger = get_logger(__name__)
structured_logger.info('my_message', user_id='1')
Async-safe context vars
You can set "global" variables that are async safe using outcome.logkit.context.
import logging
from outcome.logkit import get_logger, context
context.add(user_id='1')
structured_logger = get_logger(__name__)
structured_logger.info('my_message') # user_id=1 will be added to this log event
context.remove('user_id')
Testing
If you want to capture logs during your tests, you can use configure_structlog and log_output fixtures.
@pytest.mark.usefixtures('configure_structlog')
def test_log_output(log_ouput):
assert log_output.entries == []
# do something
assert log_output.entries == [...]
You can also define the captured log level or add custom processors thanks to these handy fixtures:
@pytest.fixture
def log_level():
return logging.DEBUG
@pytest.fixture
def log_processors(log_output):
my_custom_processor = foo
return [my_custom_processor, log_output]
@pytest.mark.usefixtures('configure_structlog')
def test_log_output(log_ouput):
assert log_output.entries == []
# do something
assert log_output.entries == [...]
Development
Remember to run ./bootstrap.sh when you clone the repository.
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 outcome-logkit-1.2.0.tar.gz.
File metadata
- Download URL: outcome-logkit-1.2.0.tar.gz
- Upload date:
- Size: 11.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.5 CPython/3.8.6 Darwin/19.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7ae2777f355eda448a9c8bed98ed345d94f930568cf7ed9f5fe8b9456a18211
|
|
| MD5 |
7d531dd460ab8c452430fd51e91e2120
|
|
| BLAKE2b-256 |
aa9d48c7abd8ca54f91529eaf9dfaf4db5c7aaf7e0db0f8fdea1fce51428b5df
|
File details
Details for the file outcome_logkit-1.2.0-py3-none-any.whl.
File metadata
- Download URL: outcome_logkit-1.2.0-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.5 CPython/3.8.6 Darwin/19.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70074ace5160dc525bb20a175ae50dbfbd51d11c77e8c8c195264de6e2dbf833
|
|
| MD5 |
f5aaa412749a3067159bc2c95495b6ef
|
|
| BLAKE2b-256 |
0d953a5057c8beaabf257d1b8676115a534a8a9f0e704130ed5df55b90495a22
|