InTouch Hub · Blue Isle Software

Disk Space Watch

Hourly disk usage check on the host running InTouch. Notifies when any mount exceeds a configured percentage.

diskcapacitydevops

Disk Space Watch

Hourly disk usage check on the host running InTouch. Notifies when any mount exceeds a configured percentage.

What it does

The monitor's check runs a bash one-liner that walks every real disk mount (filtering out tmpfs/devtmpfs/squashfs), prints a per-mount status line, and emits the literal token ALERT when at least one mount is over the threshold. The when: arm uses contains ALERT to gate notification.

Quiet by default — if all mounts are under threshold, the else: arm matches and nothing fires.

Edit before installing

In monitor.yaml:

Bindings used

Tools used

Pattern showcase

{{check.output}} contains ALERT is the string-marker pattern — a cheap, no-parse way to gate a notification on the result of a free-form shell script. Works for any check that can emit a known sentinel string ("ALERT", "FAIL", "OVER", etc.) when something is wrong.

Previous form

Replaces the disk-space-alert job (deleted 2026-05-19). The job version fired its notification unconditionally with the same body; this monitor stays quiet on healthy days.