A set of functions to reduce the boilerplate required to add observability to your service of module
Project description
observability_utils
A set of functions and decorators to reduce the boilerplate required to add OpenTelemetry based observability to your Python service or module.
The decorators allow spans to be initialised which automatically capture identified parameters of the decorated method as Span Attributes. The context propagation helpers provide a pair of standard functions that can be used as parameters to streamline addition of this functionality.
In the initial version the following utils are provided:
setup_tracing(name)
- Sets up basic tracing using a standardised naming convebstion so that the application is easily identifiable in visualisation tools.set_console_exporter()
- Turns on output of the capturesd traces in a local console/terminal to allow viewing of it without the need for an observability backend such as Jaeger or Promethus. Useful for debugging and testing.get_tracer(name)
- Retrieves the currently active Tracer object and labels is using a standard naming convention so that traces it produces are consistent across applications.get_context_propagator
- Retrieves the current observability context info in a form suitable for propagating.propagate_context_in_stomp_headers(headers, context)
- Simplfies the propagation of the Tracing Context between services that support STOMP communication over a message bus.retrieve_context_from_stomp_headers(frame)
- Simplifies th reception of the Tracing Context by services that support STOMP communication over a message bus.add_span_attributes
- Simplifies the addition of named attributes to the current span.JsonObjectSpanExporter
- A custom SpanExporter that allows the span content to be examined for use in tests.asserting_span_exporter
- A contextmanager that makes use of JsonObjectSpanExporter to allow functions under test to be checked by enclosing them in a with block.
Source | https://github.com/DiamondLightSource/observability-utils |
---|---|
PyPI | pip install observability-utils |
Releases | https://github.com/DiamondLightSource/observability-utils/releases |
Usage examples:
from fastapi import FastAPI
from observability_utils.decorators import start_as_current_span
from observability_utils.tracing import setup_tracing, get_tracer
from opentelemetry.instrumentation.fastapi import FastAPIInstrumentor
setup_tracing("my_rest_app")
app = FastAPI(
docs_url="/docs",
on_shutdown=[teardown_handler],
title="My Rest App",
lifespan=lifespan,
version=REST_API_VERSION,
)
FastAPIInstrumentor().instrument_app(app)
TRACER = get_tracer("my_rest_app")
start_as_current_span(TRACER, "fruit", "fruit.colour", "amount")
def my_func(fruit : Fruit = "apple", amount : int = 0):
#function body
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
File details
Details for the file observability_utils-0.1.4.tar.gz
.
File metadata
- Download URL: observability_utils-0.1.4.tar.gz
- Upload date:
- Size: 32.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ad862e35af60ef2a6a246b4f9b7542224ab39116867fb165fece989116907e8 |
|
MD5 | 775fc184b2f8818e1e5b99528c2ea8d6 |
|
BLAKE2b-256 | 09ac35526fc5fc25a355231012612d32b643535e0a0e57b29e9115937ccf6328 |
File details
Details for the file observability_utils-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: observability_utils-0.1.4-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69e1f37fe40590817d81ce965d2acef8ce18073e659c6b562387355e6d2e78bd |
|
MD5 | a6483421f9e70faec4eb46460062e383 |
|
BLAKE2b-256 | 28e1825eb0ffe2228af0c20d07bc7c45464b3fd54f0abd6a38f28a82a8912350 |