Simple and visually pleasing logger for AWS Lambda
Project description
Lambo
Simple and visually pleasing logger for AWS Lambda that prepends your log lines with the log level and the AWS request ID, making searching CLoudWatch for event logs a cinch!
Before installing lambo…
START RequestId: 03cf3256-f2e1-461c-a4a0-60eb91ac8149 Version: $LATEST
This log line was generated with ``print()``
END RequestId: 03cf3256-f2e1-461c-a4a0-60eb91ac8149
REPORT RequestId: 03cf3256-f2e1-461c-a4a0-60eb91ac8149 Duration: 3000.00 ms Billed Duration: 3000 ms Memory Size: 128 MB Max Memory Used: 128 MB
After installing lambo…
START RequestId: 03cf3256-f2e1-461c-a4a0-60eb91ac8149 Version: $LATEST
DEBUG RequestId: 03cf3256-f2e1-461c-a4a0-60eb91ac8149 This log line was generated with ``logger.debug()``
INFO RequestId: 03cf3256-f2e1-461c-a4a0-60eb91ac8149 This log line was generated with ``logger.info()``
WARNING RequestId: 03cf3256-f2e1-461c-a4a0-60eb91ac8149 This log line was generated with ``logger.warning()``
ERROR RequestId: 03cf3256-f2e1-461c-a4a0-60eb91ac8149 This log line was generated with ``logger.error()``
END RequestId: 03cf3256-f2e1-461c-a4a0-60eb91ac8149
REPORT RequestId: 03cf3256-f2e1-461c-a4a0-60eb91ac8149 Duration: 3000.00 ms Billed Duration: 3000 ms Memory Size: 128 MB Max Memory Used: 128 MB
Why not use aws_lambda_powertools? If you are already building your Lambda package with external dependencies well then you could probably use that great tool by AWS.
But if you are looking for a lighter-weight solution with no external dependencies, then this might help you.
Installation
pip install lambo
Usage
Create a logger using the getLogger()
method and bind it to your Lambda handler functions with the @bind
decorator.
import lambo
logger = lambo.getLogger('my-logger')
@logger.bind
def handler(event, context):
logger.info('HELLO!')
return {'ok': True}
Or, if brevity is your thing, import the built-in logger:
from lambo import logger
@logger.bind
def handler(event, context):
logger.info('HELLO!')
return {'ok': True}
Customization
The default log level for lambo loggers is INFO
and the default format string is %(levelname)s %(awsRequestId)s %(message)s
, where awsRequestId
is extracted from the Lambda execution context.
You can override these values at runtime…
import lambo
logger = lambo.getLogger('my-logger', 'DEBUG', '%(message)s')
Or with ENV variables…
export LAMBO_LOG_LEVEL=DEBUG
export LAMBO_LOG_FORMAT="%(message)"
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 lambo-0.4.0.tar.gz
.
File metadata
- Download URL: lambo-0.4.0.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7ff3bc9ad7c00fad701b90b0502247157c92ab1146d1933418817ec3700e312 |
|
MD5 | 59045e6fc61db27394de1f5f105b23bd |
|
BLAKE2b-256 | 719e3b7e8f3aff79be3d450bd1a35f439f4c99c4705863bed3068e3e0b6bbb43 |
File details
Details for the file lambo-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: lambo-0.4.0-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26bc71682f3b3e4b1ca60bab784894ea33682f456c2498869b8022cd3fd1e5f3 |
|
MD5 | 9a0ada51e892cf5b75254e646476295b |
|
BLAKE2b-256 | ce1cd0b894ebf0462c53211ae5f41ed0ac400ec8087f97bcafc5cafd9d30e3ef |