Skip to main content

A simple reusable app that checks and lists various information about your project and its dependencies

Project description

Django-heartbeat is a simple reusable app that checks and lists various information about your project and its dependencies

Requirements

  • Python >=3.8 (tested with Python 3.8, 3.10)
  • Django >=4 < 5

Installation

Install using pip:

pip install django-heartbeat

Next, add 'heartbeat' to your settings.py INSTALLED_APPS:

INSTALLED_APPS = (
  ...
  'heartbeat',
)

Configure urls.py

if 'heartbeat' in settings.INSTALLED_APPS:
    from heartbeat.urls import urlpatterns as heartbeat_urls

    urlpatterns += [
        url(r'^heartbeat/', include(heartbeat_urls))
    ]

Usage

  • /heartbeat/

    After this point you can access the /heartbeat/ endpoint and receive a 200 OK.

  • /heartbeat/1337/

    If you want a more detailed view of some custom checkers you MUST configure a custom profile for heartbeat in your settings.py. The profile should be a dictionary containing at least the basic auth credentials or the key disable set to True to disable basic authentication.

e.g.:

HEARTBEAT = {
  'package_name': 'foo_project',
  'checkers': [
      'heartbeat.checkers.build',
      'heartbeat.checkers.distribution_list',
      'heartbeat.checkers.debug_mode',
  ],
  'auth': {
      'username': 'foo',
      'password': 'bar',
  },
}

If no checkers are defined, heartbeat will default to the following:

  • heartbeat.checkers.distribution_list
  • heartbeat.checkers.debug_mode
  • heartbeat.checkers.python

Available checkers

Please make sure you have the latest version of django-heartbeat since checker names changed in versions 1.0.8 and 2.0.0. If for some reason you cannot install the latest version, read the release notes for the version you have and the versions mentioned above.

heartbeat.checkers.build

  • lists information about installed package
  • Please be aware that in order for this checker to work you have to add the 'package_name': 'foo_package' key, value pair in the HEARTBEAT settings

heartbeat.checkers.databases

  • displays information about the connection with your configured databases

heartbeat.checkers.debug_mode

  • displays whether the DEBUG mode is set to True or False

heartbeat.checkers.distribution_list

  • lists all installed dependencies

heartbeat.checkers.host

  • displays various information about your system (e.g. hostname, number of CPUs, uptime, used/free memory, etc.)

heartbeat.checkers.memcached_status

  • displays stats about your Memcached.
  • Before enabling this checker please make sure that you have installed the appropriate Memcached binding (the two most common are python-memcached and pylibmc)

heartbeat.checkers.python

  • lists the current python version

heartbeat.checkers.redis_status

  • checks your connection with the Redis server
  • Make sure that you have CACHEOPS_REDIS configured properly in your settings.py

Implementing your own checker

  • my_checker.py:
    def check(request):
      """
      :param request: HttpRequest object
      :return: dict
      """
    
      # Checker logic goes here
    
      return {'ping': 'pong'}
    

Note: The function name of your checker MUST be 'check' and has to return a JSON-serializable object

  • add it to the settings.HEARTBEAT config
    HEARTBEAT = {
        'checkers': [
            'heartbeat.checkers.distribution_list',
            'my_project.my_checker'
            ...
    
        ],
        ...
    }
    

Simple, huh?

If you would like to contribute to this library with a new checker (or any other functionality), feel free to make a pull request.

Contributors

  • Andrei Prădan
  • Dan Claudiu Pop

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

django-heartbeat-2.2.2.tar.gz (8.1 kB view details)

Uploaded Source

Built Distribution

django_heartbeat-2.2.2-py3-none-any.whl (11.5 kB view details)

Uploaded Python 3

File details

Details for the file django-heartbeat-2.2.2.tar.gz.

File metadata

  • Download URL: django-heartbeat-2.2.2.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for django-heartbeat-2.2.2.tar.gz
Algorithm Hash digest
SHA256 a9d2ecfdd15e3adf12ba2f89683846dfc4b5316ab9c64174a46918fc9e9fc4d2
MD5 0432f460c4f2a152f9aae29d686c3818
BLAKE2b-256 b69c3537c619f00b870df8e54b57df900b2aaa3180a3b31079fd586c5b969728

See more details on using hashes here.

File details

Details for the file django_heartbeat-2.2.2-py3-none-any.whl.

File metadata

File hashes

Hashes for django_heartbeat-2.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a259a9c112d8ca0067c089c5818dfa4374bda4c8dd833711e412751ac6b9664a
MD5 80002b3498555ec1e38c6fc6db2a8f60
BLAKE2b-256 cfa4b3b41b72e63d8ca74d55a73135ffcd75276b7f1a8f435b69ff3a50be61f8

See more details on using hashes here.

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