Skip to main content

Capture stdout, stderr and exit codes from cron jobs and view them in a web UI

Project description

sioncronaich

sioncronaich - A lightweight cron-job monitoring tool written in Python - from Gaelic "to synchronise, to chronicle"

Python 3.12 Ruff pre-commit Coverage

sioncronaich wraps any shell command, captures its stdout, stderr and exit code, then POSTs the result to the sioncronaich web app, which stores everything in a local SQLite database and renders it in a simple web dashboard.


Quick start

1 — Start the web app

uv run uvicorn --factory sioncronaich.app:create_app --host 127.0.0.1 --port 8716

Pass --host, --port, and any other server options directly to uvicorn. See uvicorn --help for the full list.

The app reads the following environment variables:

Environment variable Default Purpose
SIONCRONAICH_DB ~/.local/share/sioncronaich/jobs.db SQLite database path
SIONCRONAICH_ROOT_PATH /sioncronaich ASGI root path when mounted behind a reverse proxy
LOG_CONFIG (unset — logs to stderr at INFO) Path to a YAML logging config file

2 — Wrap a command

sioncronaich --name "daily-backup" -- /usr/local/bin/backup.sh --full

The wrapper exits with the same exit code as the wrapped command, so existing cron alerting is unaffected. If posting to the web app fails, the error is printed to stderr but the exit code is still that of the wrapped job.

Usage: sioncronaich [OPTIONS] COMMAND...

Options:
  --name TEXT      Human-readable label for this job  [required]
  --endpoint TEXT  URL of the POST /jobs endpoint
                   [default: http://127.0.0.1:8716/jobs]
    --timeout INT    HTTP request timeout in seconds  [default: 10]

The endpoint can also be set via the SIONCRONAICH_ENDPOINT environment variable so you don't have to repeat it in every crontab entry. The --endpoint flag takes precedence if both are set.

export SIONCRONAICH_ENDPOINT=http://mon.example.com/sioncronaich/jobs

3 — Add to crontab

# m   h  dom mon dow  command
0     3  *   *   *    sioncronaich --name daily-backup -- /usr/local/bin/backup.sh
*/5   *  *   *   *    sioncronaich --name health-check -- /usr/local/bin/check.sh

4 — View the dashboard

Open http://127.0.0.1:8716 in a browser for a colour-coded table of recent job runs. stdout / stderr are available in collapsible panels.

The raw JSON API is also available:

Method Path Description
POST /jobs Ingest a new job result (used by sioncronaich)
GET /jobs List job results as JSON (newest first)
GET / HTML dashboard

Interactive API docs are served at http://127.0.0.1:8716/docs.


Reverse proxy with Caddy

sioncronaich is designed to be mounted at a sub-path behind a reverse proxy. The default sub-path is /sioncronaich; override it with SIONCRONAICH_ROOT_PATH.

example.com {
    handle_path /sioncronaich/* {
        reverse_proxy 127.0.0.1:8716
    }
}

Start the app with the matching root path:

SIONCRONAICH_ROOT_PATH=/sioncronaich \
  uv run uvicorn --factory sioncronaich.app:create_app --host 127.0.0.1 --port 8716

The dashboard is then available at https://example.com/sioncronaich and the ingest endpoint at https://example.com/sioncronaich/jobs.


Logging

By default the app logs to stderr at INFO level. To use a custom logging configuration, point LOG_CONFIG at a YAML file in the standard logging.config.dictConfig format. A ready-to-use example is provided at logging.yaml:

LOG_CONFIG=logging.yaml uv run uvicorn --factory sioncronaich.app:create_app

Development

uv sync --all-extras
uv run prek install

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

sioncronaich-0.2.1.tar.gz (28.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sioncronaich-0.2.1-py3-none-any.whl (31.9 kB view details)

Uploaded Python 3

File details

Details for the file sioncronaich-0.2.1.tar.gz.

File metadata

  • Download URL: sioncronaich-0.2.1.tar.gz
  • Upload date:
  • Size: 28.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sioncronaich-0.2.1.tar.gz
Algorithm Hash digest
SHA256 10ba74a7abf48bd73eba0b9a90d6ebffdeffe76ac9282fb2f3235da441f9c3e0
MD5 e7b6fac04ee6860b27a44064625de2ef
BLAKE2b-256 6f84b1ea16d4b7af6b49cbea963f3ff917ac07b23eaf935f3a836d3aa3942d47

See more details on using hashes here.

Provenance

The following attestation bundles were made for sioncronaich-0.2.1.tar.gz:

Publisher: python-publish.yml on ac3673/sioncronaich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sioncronaich-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: sioncronaich-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 31.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sioncronaich-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fa65794d6e8122793790b145a701b5c062f467ade4e7fd388246ec70bfeb8d76
MD5 024cfa6eab27276cfdf4c4b1bf8ea5fb
BLAKE2b-256 10fed6f457341e62c3d5e1b4fc3cd0e95c36645b2e5f9ae4ed135e4eb6677627

See more details on using hashes here.

Provenance

The following attestation bundles were made for sioncronaich-0.2.1-py3-none-any.whl:

Publisher: python-publish.yml on ac3673/sioncronaich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page