Python library to aid consistent configuration of logging, metrics (future) and tracing (further in future). Packaging and wiring existing open tooling to work effortlessly on UIS DevOps managed cloud infrastructure.
Project description
Observability Python Library
Currently a POC in the Wilson team. Python library to aid consistent configuration of logging, metrics (future) and tracing (further in future). Packaging and wiring existing open tooling to work effortlessly on UIS DevOps managed cloud infrastructure.
ucam_observe integrates with gunicorn, django and plain Python projects. It expects that gunicorn is used to serve both Django and plain-python web app projects.
- Install this module
- Usage
- Environment Configuration
- Gunicorn setup
- Django project setup
- Testing your application's logging
- Developing
ucam_observe
Install this module
pip install ucam-observe # For any python project
pip install ucam-observe[django] # for django projects
Once installed:
- Web apps running in gunicorn must configure gunicorn
- Django projects must configure django
Usage
Logging
Usage is similar to using structlog directly with the function get_structlog_logger returning
an object compatible with that returned by structlog's get_logger function. No further
configuration is needed.
logger = get_structlog_logger(__name__)
logger.info("some_event")
logger.info("some_other_event", foo=bar)
Metrics and Tracing
raise NotImplemented
Environment Configuration
Log Level
Set the LOG_LEVEL environment variable to control the logging level (e.g., DEBUG, INFO, WARNING,
ERROR, CRITICAL). This setting adjusts the verbosity of the log outputs:
export LOG_LEVEL=DEBUG
Console Logging
Set the CONSOLE_LOGGING environment variable to control whether logs should be output in a
console-friendly or JSON format. JSON is used in production.
If it's not set, the default behaviour auto-selects (human-readable) console logging when running in an interactive console, and JSON when it's not. As a result, you shouldn't need to set CONSOLE_LOGGING, other than in specific situations, like when testing different outputs.
Set it to True to force console-friendly formatting, or False to force JSON output:
export CONSOLE_LOGGING=True
Example Docker Compose Configuration
When using Docker Compose for local development, you can set the environment variables in your
docker-compose.yml file:
services:
your_service:
build: .
environment:
LOG_LEVEL: "DEBUG"
# Or, to allow the calling environment to override LOG_LEVEL:
# LOG_LEVEL: "${LOG_LEVEL:-DEBUG}"
Gunicorn setup
Adapt Gunicorn configuration
In the root of your project, create/amend a gunicorn.conf.py. Add the following code to the file.
logger_class = "ucam_observe.gunicorn.UcamObserveLogger"
You don't have to set any other logging configuration options.
If you want to adjust the logging config, you can extend the default config like this:
import ucam_observe.gunicorn
logger_class = "ucam_observe.gunicorn.UcamObserveLogger"
logconfig_dict = {
**(default_config := ucam_observe.gunicorn.get_gunicorn_dict_config()),
"loggers": {
**default_config["loggers"],
"custom": {
"level": "ERROR",
},
},
}
Django project setup
Django Settings
- Include
"ucam_observe"and"django_structlog"inINSTALLED_APPS - Include
"django_structlog.middlewares.RequestMiddleware"inMIDDLEWARE - Set
LOGGING_CONFIGto None (this disables django's builtin logging initialisation) - (Optional) modify
LOGGINGto extenducam_observe's default logging config
LOGGING_CONFIG = None # disable Django logging configuration in favour of ucam-observe
INSTALLED_APPS = [
...,
"ucam_observe",
"django_structlog",
]
MIDDLEWARE = [
...,
"django_structlog.middlewares.RequestMiddleware",
]
Or if you want to modify the logging config:
from ucam_observe.django import get_django_dict_config
# use the `LOGGING` setting as normal, but extend the default config:
LOGGING = get_django_dict_config()
LOGGING["loggers"]["foo.bar"] = {"level": "ERROR"}
This disables Django default logging configuration
behaviour and defers
all logging configuration to ucam-observe. This ensures logging configuration is only configured
once and the surplus default Django
loggers are not
added.
Console Logging and DEBUG
The Django convention is to log to the console when DEBUG=True. ucam_observe always logs to stdout/stderr and detects whether its running in an interactive console to switch between human-readable or JSON structured log output. See the Console logging section for details.
External Settings and Environment Variables
ucam_observe does not support environment variables from externalsettings, for example
EXTERNAL_SETTING_LOG_LEVEL will not configure the logging level.
Environment variables must be as documented above.
Testing your application's logging
ucam_observe can help you test the log output generated by your application. It allows tests to capture logs generated by application code, with access to the same structured data that gets emitted as JSON in production.
Pytest support
ucam_observe contains a pytest plugin that automatically provides:
Fixture structcaplog: ucam_observe.testing.StructuredLogCapturer
Provides log capturing tailored to ucam_observe, much like pytest's caplog. It holds lists of log records in three format variations on properties event_dicts, rendered_events and records. See StructuredLogCapturer for details.
Fixture disabled_log_output: ucam_observe.testing.LogOutputDisabler
This fixture is auto-used by tests, unless they are marked with pytest.mark.log_output_enabled. It prevents logs being written to stderr, in order to reduce noise in pytest's output when tests fail.
It doesn't prevent pytest's own log capturing or structcaplog from capturing, and pytest will still print details of logs emitted by a test if one fails. Without this, pytest's test failure details would contain each log message twice — once when showing the text written to stdout and once to show the logs pytest captured during a test.
To disable this per-test, mark the test with @pytest.mark.log_output_enabled. To disable for all tests in a module, assign the module global pytestmark = [pytest.mark.log_output_enabled]. To disable for all tests, use the same pytestmark assignment in a top-level conftest.py file.
Testing APIs
ucam_observe.testing.capture_logs
A context manager that captures the logs emitted while it's active. It holds lists of log records in three format variations on properties event_dicts, rendered_events and records. See StructuredLogCapturer for details.
ucam_observe.testing.disable_log_output
A context manager that stops ucam_observe writing logs to stdout while active. It doesn't prevent logs being captured by capture_logs().
ucam_observe.testing.StructuredLogCapturer
The type returned by capture_logs() and the structcaplog fixture.
It holds lists of log records in thee format variations that populate automatically as logs are emitted:
event_dicts: A list ofdictobjects containing the structured log events that will be formatted as JSON objects.rendered_events: A list ofstrcontaining the formatted event dicts as they will be written tostdout. These will either be in JSON or console format, depending on theCONSOLE_LOGGINGenvar.records: A list oflogging.LogRecordobjects.
Advice on testing logging
- Focus on testing your own application's logging behaviour, don't slip into testing behaviour that
ucam_observeis responsible for (in the same way you wouldn't test the correctness of your HTTP client library). - Use
event_dictsto make assertions about logged events. They are consistent for logs emitted bystructlogand by stdliblogging.- Whereas the
recordslist'slogging.LogRecord.msgvalues holdstrfor stdlib anddictforstructloglogs.
- Whereas the
- Asserting about event dicts can be verbose and overly-specific, which can result in tests that are hard to maintain, understand and prone to breaking.
- Consider using an assertion/matcher library to reduce boilerplate code and avoid brittle assertions about unimportant log event details.
ucam_observeitself uses thepychoirmatcher library for this purpose, see the django tests for an example.
Developing ucam_observe
Everything below is for developers working on ucam_observe itself, people using the library can ignore this.
Developer quickstart
Firstly, install docker-compose.
Install poethepoet
pip install poethepoet
Then, most tasks can be performed via the poe command.
E.g.
# Build the containers
$ poe build
Run the follow command to see available commands:
$ poe
Optional extras
This library includes optional extras, e.g. ucam-observe[django]. Some
tests will require these optional dependencies to pass. The following command
will install all optional dependencies.
$ poetry install --all-extras --with django-dev
Some tests require the absence of dependencies and these are excluded by default. See the tox.ini file for how these tests are run.
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 ucam_observe-0.4.0.tar.gz.
File metadata
- Download URL: ucam_observe-0.4.0.tar.gz
- Upload date:
- Size: 20.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56ebaa5e3c3415079fd0532bfbe0a3d12b55d4fb3d5c2c9f6740a91f459df0e5
|
|
| MD5 |
fb589ccd4eb5019903044ccde4d95416
|
|
| BLAKE2b-256 |
41c023774d0e7809979e3b61dda727e19895de113fec9ad740c2cf79f35058a9
|
File details
Details for the file ucam_observe-0.4.0-py3-none-any.whl.
File metadata
- Download URL: ucam_observe-0.4.0-py3-none-any.whl
- Upload date:
- Size: 20.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7df08bdde07511c28cc13322fa66908b0d56a270b8b176a33d113569259b6a48
|
|
| MD5 |
ec82afd8c237c3b9e2b0c5d4f8dffa1f
|
|
| BLAKE2b-256 |
d24b52157122c7d21fa07921b4e718f3b82ca725fbd4a3412ec36bbbe30821e0
|