From eb279c4c2111129c5b37210305f1e0f9fd6486ea Mon Sep 17 00:00:00 2001 From: "Berk D. Demir" Date: Thu, 30 Apr 2020 19:43:21 -0700 Subject: [PATCH] Add runitor to resources.{md,html} From its README: Why Do I Need This Instead of Calling curl from a Shell Script? In addition to clean separation of concerns from the thing that needs to run and the act of calling an external monitor, runitor packs a few neat extra features that are bit more involved than single line additions to a script. It can capture the stdout and stderr of the command to send it along with execution reports, a.k.a. pings. When you respond to an alert you can quickly start investigating the issue with the relevant context already available. It can be used as a long running process acting as a task scheduler, executing the command at specified intervals. This feature comes in handy when you don't readily have access to a job scheduler like crond or systemd.timer. Works well in one process per container environments. --- templates/docs/resources.html | 3 ++- templates/docs/resources.md | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/docs/resources.html b/templates/docs/resources.html index d4b6c1ee..91fe15e1 100644 --- a/templates/docs/resources.html +++ b/templates/docs/resources.html @@ -34,4 +34,5 @@ Please submit additions and corrections \ No newline at end of file +
  • runitor - A command runner with healthchecks.io integration to keep your scripts and containers simple.
  • + diff --git a/templates/docs/resources.md b/templates/docs/resources.md index 52dfe4aa..12e5edb4 100644 --- a/templates/docs/resources.md +++ b/templates/docs/resources.md @@ -36,3 +36,4 @@ Please submit additions and corrections * [HealthTray](https://github.com/taylus/HealthTray) – Watch your healthchecks in Windows system tray. * [healthchecks/dashboard](https://github.com/healthchecks/dashboard) – A standalone HTML page showing the status of the checks in your account. +* [runitor](https://github.com/bdd/runitor) - A command runner with healthchecks.io integration to keep your scripts and containers simple.