Skip to main content

A simple module to allow you to easily add health endpoints to your Flask application

Project description

Flask-Healthz

Define endpoints in your Flask application that Kubernetes can use as liveness and readiness probes.

Setting it up

Blueprint

Register the blueprint on your Flask application:

from flask import Flask
from flask_healthz import healthz

app = Flask(__name__)
app.register_blueprint(healthz, url_prefix="/healthz")

Define the functions you want to use to check health. To signal an error, raise flask_healthz.HealthError.

from flask_healthz import HealthError

def liveness():
    pass

def readiness():
    try:
        connect_database()
    except Exception:
        raise HealthError("Can't connect to the database")

Now point to those functions in the Flask configuration:

HEALTHZ = {
    "live": "yourapp.checks.liveness",
    "ready": "yourapp.checks.readiness",
}

It is possible to directly set callables in the configuration, so you could write something like:

HEALTHZ = {
    "live": lambda: None,
}

Check that the endpoints actually work:

$ curl http://localhost/yourapp/healthz/live
{"status": 200, "title": "OK"}
$ curl http://localhost/yourapp/healthz/ready
{"status": 200, "title": "OK"}

Now your can configure Kubernetes or OpenShift to check for those endpoints.

Extension

You can also use the provided Flask extension to register the healthz blueprint:

from flask import Flask
from flask_healthz import Healthz

app = Flask(__name__)
Healthz(app)

The rest of the configuration is identical.

The extension has an additional option, no_log, that can disable logging of the HTTP requests handled by your healthz endpoints, to avoid cluttering your web log files with automated requests. At the moment, only the gunicorn web server is supported.

Healthz(app, no_log=True)

Examples

Here's an example of how you could use flask-healthz in OpenShift's deploymentconfig:

kind: DeploymentConfig
spec:
  [...]
  template:
    [...]
    spec:
      containers:
      - name: yourapp
        [...]
        livenessProbe:
          httpGet:
            path: /healthz/live
            port: 8080
          initialDelaySeconds: 5
          timeoutSeconds: 1
        readinessProbe:
          httpGet:
            path: /healthz/ready
            port: 8080
          initialDelaySeconds: 5
          timeoutSeconds: 1

Some projects that have setup flask-healthz:

License

Copyright 2020-2021 Red Hat

Flask-Healthz is licensed under the same license as Flask itself: BSD 3-clause.

codecov

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_healthz-1.0.1.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

flask_healthz-1.0.1-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file flask_healthz-1.0.1.tar.gz.

File metadata

  • Download URL: flask_healthz-1.0.1.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for flask_healthz-1.0.1.tar.gz
Algorithm Hash digest
SHA256 3b25bfd8606950a77632925cfbbf19cac20650be51fc0efbe78c387e559e2541
MD5 beab3f58f1ca17767cff0615c622b5fd
BLAKE2b-256 6ea34566a5059d8ac22a8be35b34f22b0e6c02997a6e7c85cddcbf4f49f303a9

See more details on using hashes here.

File details

Details for the file flask_healthz-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for flask_healthz-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 208e1f35d12d70bca623ac2dd9de17813c397f9f0a0c09aa746b4a543c75615d
MD5 c87b45e29a4b59a01feda4a9a90caa1c
BLAKE2b-256 fd4290a825d7f90332b298c670fa78adfad4c401a3dcab41873b8f3e096ad958

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