Tools to assist in monitoring a Python service.
Project description
PowerFlex Python Monitoring library (powerflex-monitoring)
Tools to assist in monitoring a Python service.
Installation
You can install from PyPi directly:
pip install powerflex-monitoring
Demo
See ./demo.py for a usage example.
Also see the type hints and the docstrings.
To run the demo:
- Install docker and docker-compose
- Run
make up - Run
docker container lsto see the open ports and try hitting the monitoring URLs listed below
$ docker logs powerflex_monitoring_main
[INFO] Added route at port 8000: /monitoring/health/
[INFO] Added route at port 8000: /monitoring/ready/
[INFO] Added route at port 8000: /monitoring/metrics/
[INFO] 🚀 Starting monitoring server at port 8000
[INFO] Connected to NATS_ADDRESS nats:4222
[INFO] Configuration for NATS health check
[INFO] Service has been marked as ready. Cause: Service is initialized
Feature: monitoring server
from powerflex_monitoring.monitoring import MonitoringServer
- Readiness and healthiness endpoints are at
/monitoring/ready/and/monitoring/health/. These are useful in environments like Kubernetes: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ - Prometheus metrics are at
/monitoring/metrics/. Use theprometheus_clientlibrary to expose more metrics.
Feature: NATS health checker
from powerflex_monitoring.nats_health_check import NatsHealthChecker
This class checks if NATS is healthy and marks the service as unhealthy if NATS is ever down for a certain period of time.
Feature: Redis health checker
This feature checks if Redis service is healthy and marks the service as unhealthy if Redis is ever down for a certain period of time. How to use it?
- Import the
RedisHealthChecker
from powerflex_monitoring.redis_health_check import RedisHealthChecker
- Instantiate a RedisHealtChecher object with the Redis connection that you want to ckeck and the monitoring server to which you will inform the health status
redis_health_checker = RedisHealthChecker(redis_conn, monitoring_server)
- Run the async function
periodically_check_redis_healthlike this:
await redis_health_checker.periodically_check_redis_health()
Feature: wait for service to be ready
This is useful when starting your integration tests. If you use the readiness check, then you can delay an action until your service is ready.
python -m powerflex_monitoring.wait_for_service_ready \
--ready-check-url http://localhost:8000/monitoring/ready/
Make sure this library is installed in your virtualenv or globally, otherwise you won't be able to run this script.
See our Makefile for an example of using this script to wait before running integration tests.
Test results
This library is unit tested with 100% coverage in Python versions 3.8 to 3.11 and in pypy 3.9.
Developing
- Install the dependencies with
make setup. This will usepipenvto manage a virtualenv. - Run the commands in the
Makefileto test your code. Runpipenv shellbefore running the commands or runpipenv run make ...to run the Makefile commands withpipenv.
make commitreadymake test-unitormake test-unit-all-python-versionsmake format-fixmake lintmake type-check-strict
- Please keep the unit test coverage at 100%.
Releasing to PyPi.org
- Make sure all code checks have passed with
make commitready. - Make sure you commit all code you wish to release with
git commit. - Set the version in
./src/powerflex_monitoring/VERSIONPlease attempt to follow semantic versioning. - Run
make bump-versionto commit the change to theVERSIONfile. - Run
make releaseto upload the package to pypi.org and to push a new git tag
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file powerflex_monitoring-1.8.1.tar.gz.
File metadata
- Download URL: powerflex_monitoring-1.8.1.tar.gz
- Upload date:
- Size: 12.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de6dc1e552918579c1324983f321604e67e3bc9b764ea4d53d75d43b749038fe
|
|
| MD5 |
bd202cdb2faa018521cf5f1f30a6323f
|
|
| BLAKE2b-256 |
7c13019f1aa39a7bd5f9d11ae0a8277e1d10ca5a8ade31ddbf3e28e193fd76db
|
File details
Details for the file powerflex_monitoring-1.8.1-py3-none-any.whl.
File metadata
- Download URL: powerflex_monitoring-1.8.1-py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9686d274839bcd1e591de26244c8813e1e818ca01601430426258aaf4e5dfbb4
|
|
| MD5 |
96d581830ed1d6fb33936b8747b96f82
|
|
| BLAKE2b-256 |
c88ed1720be714318d5dc6da483158b34ad6cb3c1a19c2adb749853237b7b135
|