Skip to main content

Flask extension that can parse and handle multiple types of request-id sent by request processors like Amazon ELB, Heroku or any multi-tier infrastructure as the one used for microservices.

Project description

CircleCI

Flask-Log-Request-Id is an extension for Flask that can parse and handle the request-id sent by request processors like Amazon ELB, Heroku Request-ID or any multi-tier infrastructure as the one used at microservices. A common usage scenario is to inject the request_id in the logging system so that all log records, even those emitted by third party libraries, have attached the request_id that initiated their call. This can greatly improve tracing and debugging of problems.

Features

Flask-Log-Request-Id provides the current_request_id() function which can be used at any time to get the request id of the initiated execution chain. It also comes with log filter to inject this information on log events as also an extension to forward the current request id into Celery’s workers.

Example: Parse request id and send it to to logging

In the following example, we will use the RequestIDLogFilter to inject the request id on all log events, and a custom formatter to print this information. If all these sounds unfamiliar please take a look at python logging system

import logging
import logging.config
from random import randint
from flask import Flask
from flask_log_request_id import RequestID, RequestIDLogFilter

def generic_add(a, b):
    """Simple function to add two numbers that is not aware of the request id"""
    logging.debug('Called generic_add({}, {})'.format(a, b))
    return a + b

app = Flask(__name__)
RequestID(app)

# Setup logging
handler = logging.StreamHandler()
handler.setFormatter(
    logging.Formatter("%(asctime)s - %(name)s - level=%(levelname)s - request_id=%(request_id)s - %(message)s"))
handler.addFilter(RequestIDLogFilter())  # << Add request id contextual filter
logging.getLogger().addHandler(handler)


@app.route('/')
def index():
    a, b = randint(1, 15), randint(1, 15)
    logging.info('Adding two random numbers {} {}'.format(a, b))
    return str(generic_add(a, b))

Installation

The easiest way to install it is using pip from PyPI

pip install flask-log-request-id

License

See the LICENSE file for license rights and limitations (MIT).

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

Flask-Log-Request-ID-0.10.1.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

Flask_Log_Request_ID-0.10.1-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file Flask-Log-Request-ID-0.10.1.tar.gz.

File metadata

  • Download URL: Flask-Log-Request-ID-0.10.1.tar.gz
  • Upload date:
  • Size: 7.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.6.9

File hashes

Hashes for Flask-Log-Request-ID-0.10.1.tar.gz
Algorithm Hash digest
SHA256 d537a1af3776308e69435ea609230f4fb7ef162fbc4bf268d7089f0b0e1851f4
MD5 21ec899505eb0933b5101a6910c6849e
BLAKE2b-256 5a59e7299f5fa5d7b5c374065d59b487c75f25df6b8c5c81e78a34f18c4acd8e

See more details on using hashes here.

File details

Details for the file Flask_Log_Request_ID-0.10.1-py3-none-any.whl.

File metadata

  • Download URL: Flask_Log_Request_ID-0.10.1-py3-none-any.whl
  • Upload date:
  • Size: 8.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.6.9

File hashes

Hashes for Flask_Log_Request_ID-0.10.1-py3-none-any.whl
Algorithm Hash digest
SHA256 04b2ab0d7eca13a816155d16dc5e5dee6a0b285c62ec2c2330394c946ff418ce
MD5 6bb9c7b06f89d7a9d2575602ac80f7be
BLAKE2b-256 7170c241aaa00cb35a93231bee40d39991f512ae9d5ecdc682f771441b6bcb2e

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