Skip to main content

A module to have a FastAPI HealthCheck for database, RabbitMQ server, Redis or external URI to validate their healths.

Project description

fastapi_healthz

Streamline your health checks with FastAPI using this user-friendly health check module. It serves as the foundational component for integrating and enhancing health checks within FastAPI.

This core module doesn't include any service checkers by default, but it offers a simple method for adding them. The reason for housing various modules separately is to accommodate the distinct dependencies required for each, ensuring that you only import the specific packages you need, thereby preventing any unnecessary package bloat.

Install

pip install fastapi-healthcheckz or poetry add fastapi-healthcheckz

Adding Health Checks

Here is what you need to get started.

from fastapi import FastAPI
from fastapi_healthz import (
    HealthCheckRegistry,
    HealthCheckRabbitMQ,
    HealthCheckRedis,
    HealthCheckUri,
    HealthCheckDatabase,
    health_check_route,
)

app = FastAPI()

# Add Health Checks
_healthChecks = HealthCheckRegistry()

# SQLAlchemy
_healthChecks.add(HealthCheckDatabase(uri="dialect+driver://username:password@host:port/database"))
# RabbitMQ
_healthChecks.add(HealthCheckRabbitMQ(host="localhost", port=5672, vhost="", username="username", password="pwd", ssl=True))
# Redis
_healthChecks.add(HealthCheckRedis(uri="redis://[password:]host:port/database"))
# This will check external URI and validate the response that is returned.
_healthChecks.add(HealthCheckUri(uri="https://www.reddit.com/r/aww.json"))

app.add_api_route('/health', endpoint=health_check_route(registry=_healthChecks))

Returned Data

When you initiate a health check request, it will examine all the submitted entries and execute a fundamental query on each of them. If the results conform to expectations, a status code of 200 is returned. However, if an error is encountered, a 500 error response will be provided.

{
    "status":"Healthy",
    "totalTimeTaken":"0:00:00.671642",
    "entities":[
        {
            "alias":"db",
            "status":"Healthy",
            "timeTaken":"0:00:00.009619",
            "tags":["db"]
        },
        {
            "alias":"reddit",
            "status":"Unhealthy",
            "timeTaken":"0:00:00.661716",
            "tags":["uri"]
        }
    ]
}

Writing a custom checker

You can effortlessly extend the functionality of this foundational module by incorporating additional health checks for various services. Simply create a new service that imports the HealthCheckAbstract. Then, build the corresponding class around this abstract.

Once your service is prepared, integrate it into the HealthCheckRegistry, and you're all set to commence testing.

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

fastapi_healthz-0.2.1.tar.gz (6.9 kB view details)

Uploaded Source

Built Distribution

fastapi_healthz-0.2.1-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_healthz-0.2.1.tar.gz.

File metadata

  • Download URL: fastapi_healthz-0.2.1.tar.gz
  • Upload date:
  • Size: 6.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/5.15.0-88-generic

File hashes

Hashes for fastapi_healthz-0.2.1.tar.gz
Algorithm Hash digest
SHA256 8cee2dadcf3073b1f26a6cd489447e537869112473e0b0cf87c5c65f69615f05
MD5 942dd700174301a3e3e32a7b4221662f
BLAKE2b-256 ac116a3ceb5ca1bebc995d05e7f6fa3238f985d72833acbe15054e28cdb3daad

See more details on using hashes here.

File details

Details for the file fastapi_healthz-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: fastapi_healthz-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 8.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/5.15.0-88-generic

File hashes

Hashes for fastapi_healthz-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8115abfe4c51e78739c7edf7894a66220bf474a7f629392e4f9e456c7b9a7976
MD5 8f6e07a56ba3de3f1b2a3bfb61c02736
BLAKE2b-256 b230a0669d8318acc8af80ac90e724648a915fcf1955dd3b8814939f62afc843

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