#!/bin/bash # ============================================================================================== # ============================= Sunday Morning Coffee Report =================================== # ============================================================================================== # # PURPOSE # ───────────────────────────────────────────────────────────────────────────── # Weekly monitoring orchestrator — runs all Sunday monitor scripts in sequence. # Designed to be read over coffee while the system is fully caught up from the # 2:30am maintenance window. # Schedule: 0 7 * * 0 (7am Sunday — after weekly_sync_maintenance.sh finishes) # # ============================================================================================== # OPERATIONAL MODEL # ============================================================================================== # # Runs COFFEE_REPORT_SCRIPTS from master.conf in order. Each script runs # independently, produces its own output, and notifies on findings. # All scripts receive --dry-run and --log flags from this orchestrator when set. # # HOST1 primary: runs all scripts. # HOST2: limited to host-aware scripts only — each script handles its own host logic. # # ============================================================================================== # DESIGN PRINCIPLES # ============================================================================================== # # Independent, Isolated Scripts # Each monitor script is fully self-contained — a failure in one does not # prevent the others from running. The orchestrator logs the failure and # continues to the next script. # # Runs After the Full Weekly Window # Scheduled 4+ hours after weekly_sync_maintenance.sh — the system is fully # synced and containers are back up before any monitoring reads run. Reports # reflect the settled post-maintenance state. # # ============================================================================================== # OPERATIONAL SAFEGUARDS # ============================================================================================== # # Root check — required for the docker/system reads used in the report # acquire_lock — prevents overlapping weekly runs # detect_hosts() — MY_ID in banner and summary # Non-fatal steps — a failed script is logged; remaining scripts still run # Flag pass-through — --dry-run and --log forwarded to all child scripts # notify() on failure — pushed only outside --dry-run, matching the runtime-mode contract below # # ============================================================================================== # CONFIGURATION # ============================================================================================== # # master.conf # # COFFEE_REPORT_SCRIPTS — ordered list of monitor scripts to run # # ============================================================================================== # RUNTIME MODES # ============================================================================================== # # sunday_morning_coffee_report.sh # Normal run. # # sunday_morning_coffee_report.sh --dry-run # Preview without any writes or notifications. # # sunday_morning_coffee_report.sh --log # Verbose per-script output. # # sunday_morning_coffee_report.sh --status # Show configured scripts and exit. # # ============================================================================================== SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" ECOSYSTEM_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" source "$ECOSYSTEM_ROOT/load_config.sh" parse_args "$@" # ============================================================================================== # ━━━ Setup ━━━ # ============================================================================================== if [[ "$EUID" -ne 0 ]]; then error "Must be run as root" exit 1 fi acquire_lock detect_hosts # ============================================================================================== # ━━━ Helpers ━━━ # ============================================================================================== JOB_PASS=() JOB_FAIL=() # ============================================================================================== # ━━━ Status ━━━ # ============================================================================================== if [[ "$SHOW_STATUS" == true ]]; then echo "━━━ Sunday Morning Coffee Report — Status ━━━" echo " Host: $MY_ID" echo " Scripts:" if [[ ${#COFFEE_REPORT_SCRIPTS[@]} -eq 0 ]]; then echo " None configured (COFFEE_REPORT_SCRIPTS in master.conf)" else for entry in "${COFFEE_REPORT_SCRIPTS[@]}"; do [[ -n "$entry" ]] && echo " ☕ ${entry##*/}" done fi echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" exit 0 fi # ============================================================================================== # ━━━ Main ━━━ # ============================================================================================== _unraid_ver=$(platform_get_os_version 2>/dev/null || echo "unknown") _uptime_s=$(awk '{print int($1)}' /proc/uptime 2>/dev/null || echo 0) _container_count=$(docker ps -q 2>/dev/null | wc -l || echo 0) _rootfs_pct=$(df / --output=pcent 2>/dev/null | tail -1 | tr -d ' %') echo "" echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" echo "☕ Sunday Morning Coffee Report — $MY_ID" [[ "$DRY_RUN" == true ]] && echo " [DRY RUN]" echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" log "$ICON_HOST Server: $MY_ID ($LOCAL_SERVER_NAME) — unRAID $_unraid_ver" log "$ICON_TIME Uptime: $(format_duration $_uptime_s)" log "$ICON_CONTAINERS Docker: $_container_count container(s) running" log "$ICON_HEALTH Rootfs: ${_rootfs_pct:-?}% used" log "$ICON_GEAR Scripts: ${#COFFEE_REPORT_SCRIPTS[@]} configured" if [[ ${#COFFEE_REPORT_SCRIPTS[@]} -eq 0 ]]; then warn "No scripts configured — add entries to COFFEE_REPORT_SCRIPTS in master.conf" exit 0 fi for script_entry in "${COFFEE_REPORT_SCRIPTS[@]}"; do [[ -z "$script_entry" ]] && continue echo "" run_orch_child "$script_entry" done # ============================================================================================== # ━━━ Summary ━━━ # ============================================================================================== echo "" echo "━━━━━ ☕ COFFEE REPORT SUMMARY ━━━━━" echo "🖥️ Host: $MY_ID" echo "⏱️ Done: $(date '+%Y-%m-%d %H:%M:%S')" if [[ ${#JOB_PASS[@]} -gt 0 ]]; then echo "✅ Passed: ${JOB_PASS[*]}" fi if [[ ${#JOB_FAIL[@]} -gt 0 ]]; then echo "❌ Failed: ${JOB_FAIL[*]}" fi if [[ ${#JOB_FAIL[@]} -gt 0 && "$DRY_RUN" != true ]]; then notify "Sunday coffee report had failures on $(hostname) ($MY_ID) — ${JOB_FAIL[*]}" \ "Sunday Morning Coffee Report" "warning" fi [[ ${#JOB_FAIL[@]} -gt 0 ]] && exit 1 exit 0