GithubHelp home page GithubHelp logo

health_ping's Introduction

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.

  1. 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
    
  2. 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
    
  3. 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.
  4. 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
    
  5. 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: [email protected].

health_ping's People

Contributors

tjtanjin avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.