Collection of helpers for working with AWS
Project description
okdata-aws
Collection of helpers for working with AWS.
Logging for Lambda
Based on Structlog.
Structured and enriched logging for AWS Lambda functions.
TL;DR:
- Decorate handler with
logging_wrapper
- Encrich logs with key/value pairs using
log_add
- Time functions with
log_duration
- Log exceptions with
log_exception
Usage
Regular Lambda functions
Wrap your Lambda handler with logging_wrapper
. Badabing badabom, you're good
to go!
You can set the service name using the logging.init
method, or configure it
using the SERVICE_NAME
environment variable.
from okdata.aws import logging
from okdata.aws.logging import logging_wrapper
logging.init("my_fantastic_lambda")
@logging_wrapper
def handler(event, context):
if error:
return {
"statusCode": 500,
"body": "Automatically logs bodies from error responses even!",
}
FastAPI applications
Call add_fastapi_logging
with the FastAPI application as a parameter
to add the logging middleware.
from okdata.aws.logging import add_fastapi_logging
app = FastAPI()
add_fastapi_logging(app)
Encriching logs
By automagic logs will be enriched with git revisions, cold start y/n call
duration and much more, but to add even more magic you can use log_add
and
log_duration
.
from okdata.aws.logging import logging_wrapper, log_add, log_duration
@logging_wrapper
def handler(event, context):
log_add(dataset=event["dataset"], foo=context["foo"])
log_duration(
lambda: slow_thinger(event["dataset"]),
"my_slow_thinger"
)
... and so on
def slow_thinger():
sleep(9999999999999999)
Exceptions
Struct log can extract exception info if we log the exception to the special
exc_info
key.
For convenience we catch and log uncaught exceptions using this already.
If you need to process an exception you can use log_exception
to log it to the
exc_info
key.
from okdata.aws.logging import logging_wrapper, log_exception
@logging_wrapper
def handler(event, context):
try:
thing()
except MyException as e:
log_exception(e)
return { ... }
Status wrapper
The status wrapper logs details about a Lambda function execution and sends it to the status API.
The first component that touches the data (typically on upload) sets a "trace ID", which is then inherited by the following processing steps. This allows the status API to track what has happened to the data, from upload through the various processing steps until the data is ready for consumption.
For pipeline components, the status wrapper picks up the trace ID from the Lambda event automatically.
The status wrapper expects the SERVICE_NAME
of the Lambda component to be set
in an environment variable, along with GIT_REV
and GIT_BRANCH
.
Usage
Tag the Lambda handler function with @status_wrapper
.
The handler function should set the domain
and domain_id
values using the
status_add
method:
from okdata.aws.status import status_wrapper, status_add
@status_wrapper()
def my_lambda_handler(event, context):
status_add(domain="dataset", domain_id=f"{dataset_id}/{version}")
# Regular handler logic here ...
# The handler can also add a body object containing component-specific information
status_body = {
"input": "/tmp/file.txt",
"output": "/tmp/file.csv",
"transformation": "text-to-csv",
}
status_add(status_body=status_body)
By default, this will send a status event with event status OK
and trace
status CONTINUE
, meaning that the data pipeline is still running. If the
handler function fails, e.g. throws an exception, it will send event status
FAILED
and trace status FINISHED
, in addition to the failure details
(exception).
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 okdata_aws-4.1.0.tar.gz
.
File metadata
- Download URL: okdata_aws-4.1.0.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 308c307209fd300d1acd49659657176e26a7d4cdbfff5a6210390e2456009d29 |
|
MD5 | 2dd1aa8c04d35f475f2af48868c8bef2 |
|
BLAKE2b-256 | 2ff0f22853d5499f13ec983dc59e17c77063c97f8089ec5e27ba3980946f6afe |
File details
Details for the file okdata_aws-4.1.0-py3-none-any.whl
.
File metadata
- Download URL: okdata_aws-4.1.0-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34dd24ca23a4dda920d9fca32f58c7f9d48f32aae98d78fba2e5702332825253 |
|
MD5 | b504a4486d892eb7f31b71ae52fcf209 |
|
BLAKE2b-256 | 532e31b7acd50185f204d769b97afb0704bd81f394d45e50ccdf75b5b45f654e |