Skip to main content

Simple tool for standardizing logging to JSON.

Project description

json-logger

Import into your Python project to standardize logs to JSON format. Works well with AWS CloudWatch and AWS Lambda Functions.

Installation

pip install -U bazze-json-logger

Usage

This package sets up a JSON formatter for the Python root logger. In order for this to work properly, be sure to run this package before setting up any new loggers.

import logging

import bazze_json_logger

logging.basicConfig(level=logging.INFO)

bazze_json_logger.setup()

logger = logging.getLogger()
logger.info('Hello World!')

Output

>>> {"timestamp": "2020-09-30T00:15:39.667110Z", "level": "INFO", "name": "root", "message": "Hello World!", "schema_version": "0.0.2"}

AWS Lambda Integration

When using AWS Lambda it is nice to have the aws_request_id as part of the JSON object for tracing purposes. To do this we need to pass it into the setup() method.

import logging

import bazze_json_logger

logging.basicConfig(level=logging.INFO)


def lambda_handler(event, context):
    bazze_json_logger.setup(aws_request_id=context.aws_request_id)
    logger = logging.getLogger()
    logger.info('Hello World!')

Viewing the logs on AWS

Logs can be viewed locally in your terminal when testings. When the application is deployed, they will show up in the CloudWatch group in JSON format.

To view the CloudWatch logs in your console:

Install awslogs

pip install -U awslogs

Export AWS_PROFILE

export AWS_PROFILE=bazze

To view all log groups:

awslogs groups

To tail your log group:

awslogs get /aws/lambda/your-function --since 5m --watch

To query and aggregate the logs, I recommend using CloudWatch Insights.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bazze-json-logger-0.0.3.tar.gz (2.6 kB view details)

Uploaded Source

Built Distribution

bazze_json_logger-0.0.3-py3-none-any.whl (3.8 kB view details)

Uploaded Python 3

File details

Details for the file bazze-json-logger-0.0.3.tar.gz.

File metadata

  • Download URL: bazze-json-logger-0.0.3.tar.gz
  • Upload date:
  • Size: 2.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.7.9

File hashes

Hashes for bazze-json-logger-0.0.3.tar.gz
Algorithm Hash digest
SHA256 fba33a00b28ed330b292241a14143a9376c506d2d8bd99251ebc48c8252dab81
MD5 bc6c06e0be89a35cd547cc9d1b1a26c5
BLAKE2b-256 51c1914453e5e1941ed30a464ece0eba0947830e9ac7c5c15ab6f2640edaadf5

See more details on using hashes here.

File details

Details for the file bazze_json_logger-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: bazze_json_logger-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 3.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.7.9

File hashes

Hashes for bazze_json_logger-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 eb36f8ab665b84c125c433a82d437535a8eb03bd086f9928fd039240058406d2
MD5 d754a5597f937208b987cac29ab7b7a0
BLAKE2b-256 d70f61211f4ab73e1d026449a5e36f22f107efac515525411b6ffb39e4588bb4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page