Skip to main content

Opinionated healthcheck library

Project description

Python Healthcheck Lib

This is an opinionated library to help with structuring healthchecks in your python application.

It will not help you with the healthcheck logic itself, but it will help you build the response in a standard format.

We aim at supporting almost exactly the standard described in https://datatracker.ietf.org/doc/html/draft-inadarei-api-health-check. Although it's just a expired draft, it seems to be the better standard on healthchecks out there as of this writing.

This standard is not fully supported yet, see the roadmap for more information.

Installation

# With pip
pip install python-healthchecklib

# With poetry
poetry add python-healthchecklib

Concepts

The main concepts to keep in mind when using this library are the service and components concepts.

We consider a service to be the application as a whole. It's the thing that is running and that you want to check the health of.

We consider components to be the different parts of the application that you want to check the health of, being them internal or external. For example, if you have a web application, you might want to check the health of the database, the cache, internal components, etc.

You'll be responsible for implementing the healthcheck logic for each component, but this library will help you build the response in a standard format and define the health of the service based on the health of its components.

Usage

The lib exposes asynchronous methods, which makes it easy to use with either sync or async codebases.

from healthcheck import Healthcheck, HealthcheckDatastoreComponent, HealthcheckCallbackResponse

# Create a healthcheck instance
healthcheck = Healthcheck(
    name="My Service"
)

# Create a component
db_component = HealthcheckDatastoreComponent(
    name="MySQL",
)

# Define the healthcheck logic for the component.
# They should be async functions that return a HealthcheckCallbackResponse
async def db_healthcheck():
    # Implement some logic to check the health of the database
    return HealthcheckCallbackResponse(
        status="pass",
        output="Database is healthy",
        affects_service_health=True
    )

# Add the healthcheck logic to the component
db_component.add_healthcheck(db_healthcheck)

# You can add more than one healthcheck to a component, which means that this is a component made of multiple instances.
async def db_healthcheck_2():
    # Implement some logic to check the health of the database
    return HealthcheckCallbackResponse(
        status="warn",
        output="Responsive but high latency",
        affects_service_health=False
    )

db_component.add_healthcheck(db_healthcheck_2)

# Add the component to the healthcheck
healthcheck.add_component(db_component)

# Get the health status of the service
status = await healthcheck.run()

# In case you're in a sync context, you can use `asyncio.run` to run the async code:
status = asyncio.run(healthcheck.run())

# Print the status
print(status)

# {
#   "status": "pass",
#   "description": "Health status of My Service",
#   "checks": {
#     "MySQL": [
#       {
#         "status": "pass",
#         "output": "Database is healthy",
#         "componentType": "datastore",
#         "componentName": "MySQL
#       },
#       {
#         "status": "warn",
#         "output": "Responsive but high latency",
#         "componentType": "datastore",
#         "componentName": "MySQL
#       }
#     ]
#   }
# }

Roadmap

We welcome contributions to help us achieve these goals. See below how to contribute.

Contributing

See the contributing guide for more information.

License

By contributing to python-healthchecklib, you agree that your contributions will be licensed under the MIT License.

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

python_healthchecklib-0.1.1.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

python_healthchecklib-0.1.1-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

Details for the file python_healthchecklib-0.1.1.tar.gz.

File metadata

  • Download URL: python_healthchecklib-0.1.1.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.2 CPython/3.10.5 Darwin/23.1.0

File hashes

Hashes for python_healthchecklib-0.1.1.tar.gz
Algorithm Hash digest
SHA256 bac6cdd9ef5825f6deb0cbe5f6d97260f3f402e111fc7fe2146444bdb77fd892
MD5 47748a2c029feb43790922d9b69cc0c8
BLAKE2b-256 bcceb7e2c780b8f7b87a3632c572a0cc4a67c8a0ac0a6ccc57198ef8fe87b6d8

See more details on using hashes here.

File details

Details for the file python_healthchecklib-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for python_healthchecklib-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 51ad9e7e782145977bf322cbe2095198a8b61473b09d43e79018e47483840d15
MD5 853e15cf5f97629b241fe3ce4658db43
BLAKE2b-256 a37dbde432ce2bfd4559ed46963eeb8331125ef4c2ea3f3a1dbf0691cdf029da

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