Skip to main content

Python eve-healthcheck project

Project description

eve-healthcheck Latest Version

Build Status Requirements Status Coverage Status

eve-healthcheck is project that servers healthcheck urls used to monitor your application Eve powered RESTful API.

Usage

from eve_healthcheck import EveHealthCheck
...

app = Eve()
hc = EveHealthCheck(app, '/healthcheck')
...

This will add an url /healthcheck that will check database connection like:

{
  "hostname":"localhost",
  "results":[
    {
      "checker":"database_check",
      "expires":1487655119.5796409,
      "output":"Database OK",
      "passed":true,
      "timestamp":1487655092.5796409
    }
  ],
  "status":"success",
  "timestamp":1487655092.5820687
}

Installation

$ pip install eve-healthcheck

Running tests with tox

Install tox

  • Need a mongodb server running on localhost

$ docker run --rm -p 27017:27017 mongo
$ pip install tox

Run tests

tox

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

eve-healthcheck-0.3.1.tar.gz (3.6 kB view hashes)

Uploaded Source

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