Observability for Impact Stack
Project description
Observability for Impact Stack
A package providing observability features for Flask apps.
Health checks
The Health
Flask extension provides health checks via an HTTP API.
The list of checks is extendable per app.
How it works
When called the requested checks run and return True
or False
. When all
checks return True
the service/app is considered healthy (i.e. in the
running
state), otherwise it is considered to be in a degraded
state.
Checks are expected to be a Python callable, which takes no arguments and returns a boolean.
Usage
Create an implementation module, e.g in a health.py
file:
"""Instantiate and configure checks."""
from impact_stack.observability import health as health_
health = health_.Health()
health.register_check("true", health_.checks.check_true, add_to_defaults=False)
@health.register_check("foo", add_to_defaults=False)
def check_foo():
"""Check for availability of foo."""
return True
In app.py
:
import flask
from . import health
app = flask.Flask(__name__)
health.health.init_app(app)
No configuration is read from app.config
. You are supposed to configure and
optionally extend the Health extension in the implementation module.
Checking the liveliness of the app
You can do a simple liveliness check at /health/ping
(default), which will
just return a 200 OK
text response.
Checking the service health
A more comprehensive health check is available at /health/
(default).
This returns a JSON response with following structure (prettyfied):
{
"health": "running",
"available_checks": [
"true",
"foo"
],
"checks": {
"foo": true
}
}
The health
field can be of:
running
: All requested checks returnedtrue
degraded
: At least one of the checks returnedfalse
Specific checks can be requested with the checks
parameter:
/health/?checks=_defaults
: Run all the checks registered as defaults, same as omitting thechecks
parameter alltogether/health/?checks=true,foo
: Run the listed checks
Headers to prevent caching of the health responses are set.
Provided checks
Some generic checks are providing in this module.
check_true
and check_false
Dummy checks which return just true
resp. false
check_db
(Requires Flask-SQLAlchemy
.)
Checks if the DB (using the default SQLAlchemy engine) is available by trying a SELECT 1
base_check_api_liveliness
(Needs instantiation.)
Base check for checking the liveliness of an (external) HTTP API.
Example usage:
import functools
from impact_stack.observability import health as health
check_example = functools.partial(
health_.checks.base_check_api_liveliness,
"GET",
"https://api.example.com/v1/health/ping",
200, # expected response status code
2.0, # timeout
)
health.register_check("example", check_example)
Authorization
A simple mechanism to prevent unrestricted calls to the /health/
endpoint is
using a shared secret in the HTTP calls.
Set the required config variable HEALTH_URL_SECRET
to a (random) string and
use the GET param auth
in calls to the endpoint.
Returns 401
if the secret does not match.
Raises a RuntimeError
if not set.
If the HEALTH_URL_SECRET
is set to None
, checking the secret is disabled.
Tracing
https://opentelemetry.io/docs/languages/python/instrumentation/
Autoinstrumentations
Tested and supported
- flask https://opentelemetry-python-contrib.readthedocs.io/en/latest/instrumentation/flask/flask.html
- celery https://opentelemetry-python-contrib.readthedocs.io/en/latest/instrumentation/celery/celery.html
- sqlalchemy https://opentelemetry-python-contrib.readthedocs.io/en/latest/instrumentation/sqlalchemy/sqlalchemy.html
- requests https://opentelemetry-python-contrib.readthedocs.io/en/latest/instrumentation/requests/requests.html
instrument_app(app) after Flask() is initiated or instrument() before Flask() is initiated
Tests
needs sqlalchemy, Postgresql redis
multiple tracers https://opentelemetry.io/docs/languages/python/cookbook/#using-multiple-tracer-providers-with-different-resource
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file impact_stack_observability-0.3.0a1.tar.gz
.
File metadata
- Download URL: impact_stack_observability-0.3.0a1.tar.gz
- Upload date:
- Size: 48.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff840f22f851140d2fe8b2f7968f7be8647cbbd071b85f606afd212ee9de1652 |
|
MD5 | 10c43d4175c017a7d8e96733e50b1495 |
|
BLAKE2b-256 | d81378a1368389e4a76443a14a4178ef0df0824ebf36a5285ab6fcfcbacc63be |
File details
Details for the file impact_stack_observability-0.3.0a1-py3-none-any.whl
.
File metadata
- Download URL: impact_stack_observability-0.3.0a1-py3-none-any.whl
- Upload date:
- Size: 36.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70f195ab14230c820a88531a6a4f60ca5d6d6f96894cbe829330b36d04b1fe5a |
|
MD5 | ee87a8805dc469d3c99fa9c350692abc |
|
BLAKE2b-256 | f1571f0385c01d162cc6cf5ad8704c2e27f99051cd66b69e9b85ab82715ea023 |