Skip to main content

Context manager around service provided by HealthChecks for easy use

Project description

Simple HealthChecks Wrapper

buy me a coffee

Context manager around service provided by healthchecks.io that will ping your check URL for both success and failure (includes stack trace).

Features

  • Zero requirements outside the standard library
  • Easily report the status of your python jobs
  • Supports both sync and async jobs

Getting started

Make a free account with at healthchecks.io and create a check. You need to copy the url of the check endpoint.

Install the library

pip install healthchecks-wrapper

Use it in your code

from healthchecks_wrapper import HealthCheck
import asyncio
valid_ping_url = "https://hc-ping.com/b2b308a5-765c-4136-8d0a-2ff0b906e3ee"  # Replace with your job url

# Sync jobs
with HealthCheck(valid_ping_url):
    # Do your job
    print("hi")

# Async jobs requires a bit more boiler plate code
async def print_hi():
    async with HealthCheck(valid_ping_url):
        # Do your job
        await asyncio.sleep(1) # Read database async
        print("hi")

def main():
    loop = asyncio.get_event_loop()
    loop.run_until_complete(print_hi())
    loop.close()

main()

buy me a coffee

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

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

healthchecks_wrapper-0.1.6.tar.gz (11.6 kB view hashes)

Uploaded Source

Built Distribution

healthchecks_wrapper-0.1.6-py2.py3-none-any.whl (5.2 kB view hashes)

Uploaded Python 2 Python 3

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