A lightweight utility package for pinging healthchecks to indicate liveness.
Project description
HealthPing
Table of Contents
Introduction
HealthPing is a lightweight python package that allows users to easily include liveness monitoring in their applications. If you've got a python program running (such as a telegram bot) and find yourself wondering from time to time about its liveness, then this is the package for you! HealthPing abstracts away the task of sending request to monitoring endpoints, managing timezones and retries - offering all these in as short as two lines of code:
from health_ping import HealthPing
HealthPing(url="https://hc-ping.com/<id>", timezone="UTC+08:00", schedule="1 * * * *").start()
HealthPing essentially adopts the "deadman switch" approach, where it regularly sends a "heartbeat" to a monitoring service such as Healthchecks.io. If a "heartbeat" does not arrive within a scheduled period, the service is assumed dead and an alert (e.g. email notification) is then sent out to the service owner.
HealthPing is published on pypi and can be easily installed with:
python3 -m pip install health_ping
Details on the usage of the package can be found on the wiki page.
Features
As a lightweight utility package, HealthPing serves to carry out a single yet important purpose - notify the monitoring service that your application is still healthy and running. In order to assist you with that, HealthPing comes equipped with the following parameters for configuration:
- url
- method
- headers
- body
- timezone
- schedule
- retries
- pre_fire
- post_fire
- log_file
- debug
For most of the use cases, specifying the url
, timezone
and schedule
will be enough! Details on each parameter such as their default values and usage are described in the wiki page.
Technologies
Technologies used by HealthPing are as below:
Done with:
Python
Project Repository
https://github.com/tjtanjin/health_ping
Setup
This section will walk you through setting up a development environment if you wish to make modifications or contributions to the project.
- First,
cd
to the directory of where you wish to store the project and clone this repository. An example is provided below:cd /home/user/exampleuser/projects/ git clone https://github.com/tjtanjin/health_ping.git
- Once the project has been cloned,
cd
into it and install required dependencies with the following command:python3 -m pip install --no-cache-dir -r requirements.txt requirements-dev.txt
- Following which, create (or copy) a .env file at the root of the project using the provided .env.template. In order to run tests, you need to replace the TEST_URL variable within the .env file with any valid URL of your choice.
- Proceed to make changes to the project (you may also wish to add test cases if necessary) and when ready, run tests with:
python3 -m pytest ./tests/test.py
- Should you wish to build this into a package, you may run the following commands within the project root directory:
python3 -m build
Team
Note: Special thanks to Avery Khoo for bouncing ideas and sharing knowledge!
Contributing
If you have code to contribute to the project, open a pull request and describe clearly the changes and what they are intended to do (enhancement, bug fixes etc).
Alternatively, you may contact me via discord or simply raise bugs or suggestions by opening an issue.
Others
For any questions regarding the implementation of the project, you may also reach out on discord or drop an email to: cjtanjin@gmail.com.
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 health_ping-1.0.1.tar.gz
.
File metadata
- Download URL: health_ping-1.0.1.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33d780896591a090bfcaf05b89d054f2814a89bd39c32bf34ac792655e04fef8 |
|
MD5 | dc339c97ff4f535dd712f8aa085a3d3d |
|
BLAKE2b-256 | c40f323797af305b656414cc845904642d5b7379da65c7cc9940c6860564e890 |
File details
Details for the file health_ping-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: health_ping-1.0.1-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac1367aec12f1c50266717516a66796624e5e12cacbe5f944109f523bc0cfc88 |
|
MD5 | d8b450e9613da42992cfafe65af091f5 |
|
BLAKE2b-256 | 786425c112d831270139906b859ba349c4b89e64b67c1f9b2984cb8affce1ec7 |