Skip to main content

Caduceus notifies you if your scheduled tasks/cron jobs did not run.

Project description

Caduceus
========

What is Caduceus?
-----------------

Caduceus is [that long stick with the intertwined snakes](https://en.wikipedia.org/wiki/Caduceus) that Hermes used to carry around.
It is also a service that will notify you if your scheduled tasks/cronjobs fail to run.


Motivation
----------

You know how you set all these cronjobs to run, and added fancy error reporting and things, only to realize too late that this doesn't help you at all when the server has been down for a month and nobody noticed?
Caduceus won't let this happen again.

Rather than trigger on failure, Caduceus triggers on absence of success.
Services have to actively check in (by visiting a URL), and, if they don't, Caduceus notifies you by email that the task has failed.
If the service starts working again, Caduceus will notify you of that as well.


Installation
------------

To install Caduceus, you can just get it from PyPI:

```bash
pip install caduceus
```

Alternatively, you can use the built-in `Dockerfile` to run it:

```bash
docker build -t caduceus .
```


Usage
-----

To run Caduceus, you need to configure it.
This is done by placing a file called `caduceus.toml` in the directory you want to run Caduceus in.
That directory is where the Caduceus SQLite database will be created.

If you installed Caduceus from the repo or with `pip`, just run it:

```bash
caduceus
```

It will load the configuration from the file, create its database and start running on `http://localhost:5000/`.

To run it via Docker:

```bash
docker run --rm -v $(pwd):/caduceus -i -t caduceus
```

Configuration
-------------

Here's a sample configuration file (which is also available as `caduceus.toml.example` in the repository):

```toml
[alerting]
# Where you want the notification emails sent if services don't check in.
recipient_emails = [ "notifyme@example.com", "otherdev@example.com" ]
# An optional secret key to use for checking in.
secret_key = "somelongkey"

[alerting.smtp]
# SMTP server configuration, for sending email.
from_addr = "caduceus@example.com"
hostname = "example.com"
port = 25
username = "myuser"
password = "mypassword"

# Your alerts go here.

[alerts]
# This is the top-level alerts section, you can add as many alerts as you want here.

# An alert needs a short name (here, `cron`), and an interval it needs to check in by.
[alerts.cron]
every = "1h"

[alerts.backups]
every = "1d"

[alerts.alwaysfail]
every = "1s"
```

The above config defines three services, `cron`, `backups` and `alwaysfail`.
`cron` needs to check in every hour, `backups` needs to check in every day, and `alwaysfail` needs to check in every second.
That's why it was called that.


Checking in
-----------

Checking in is done by retrieving a URL on the server.
The URL for checking in and resetting the alert timer is `/reset/<alert name>/`.
For example, to check in to `cron` if you haven't specified a `secret_key` (and if Caduceus is running on example.com), you'd simply do:

```bash
curl http://example.com/reset/cron/
```

If you *did* specify a secret key, just include it:

```bash
curl http://example.com/reset/cron/?key=<your secret_key>
```

If your alert is set up for, say, one hour, and your task does not check in, you will get an email one hour after its last checkin, saying "your task has not checked in".
If it still doesn't check in, you'll get another email an hour after that, then an hour after that, etc, until it does, at which point you'll get an email saying that the job is now fine.


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

caduceus-0.0.2.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

caduceus-0.0.2-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file caduceus-0.0.2.tar.gz.

File metadata

  • Download URL: caduceus-0.0.2.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for caduceus-0.0.2.tar.gz
Algorithm Hash digest
SHA256 fb942308df9c9205e6d07660566a8925eeb798a057b2a25a80f97c434c9307fc
MD5 92aba3a1167fe893a165f60a764c7339
BLAKE2b-256 c11c218f1f38d09b0f5b37b456f97a7ecb6a0fcfa2a69558efb71eb34c7fe45b

See more details on using hashes here.

File details

Details for the file caduceus-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for caduceus-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 8dcf82a24eced821fbcf8c5cb8a1e77079cc549f74535673778046d82ea057eb
MD5 a6428b6db8d399a01c0932469aaa4673
BLAKE2b-256 dbb1b277cdd7c2054951c2abf392ff6b0fd5e2184747f772278721b45bf1016f

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