runbooks: INC-001 PBS USB-ZFS recovery + import/alert hardening (P5-14)

Sync pbs/zfs-health-check.sh to the deployed version and log the full
INC-001 resolution arc:
- recovery by importing pools on stable /dev/disk/by-id paths
- by-id cachefile pin so the fix survives USB re-enumeration
- wait-for-zfs-usb.sh + zfs-import-cache drop-in for the boot race
- alert split: devices-present (import) vs devices-absent (hardware),
  new zfs_pool_members_present metric
- cron ownership fix: root-managed single entry, tommy evicted, unmarked
  root line removed (double-fire root cause)

Marks the acute import/alert half of INC-001 resolved; USB-hub reliability
history retained as a separate hardware concern.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
tommy
2026-07-02 11:21:53 -05:00
parent 09a466b2c6
commit 9e6afe27c5
2 changed files with 93 additions and 11 deletions
+44 -10
View File
@@ -1,8 +1,11 @@
#!/bin/bash
# ZFS pool health check — /usr/local/bin/zfs-health-check.sh
# Runs every 5 min via root crontab on PBS.
# Three states: ONLINE (silent), DEGRADED/FAULTED (ntfy high), MISSING (ntfy urgent).
# States: ONLINE (silent), DEGRADED/FAULTED (ntfy high), NOT-IMPORTED w/ members
# present (ntfy high — failed import, hardware fine), MISSING members (ntfy urgent).
# Writes Prometheus textfile metrics after full loop completes only.
# NOTE: deployed by Ansible role `pbs` (roles/pbs/files/zfs-health-check.sh).
# Edit the role file, not the live copy — the playbook overwrites it.
NTFY_URL="https://ntfy.goattw.net/zfs-health"
EXPECTED_POOLS=(usb1-zfs usb2-zfs)
@@ -18,6 +21,8 @@ logger -t zfs-health-check "starting pool health check"
METRICS=""
METRICS+="# HELP zfs_pool_present 1 if pool imported and healthy, 0 if missing\n"
METRICS+="# TYPE zfs_pool_present gauge\n"
METRICS+="# HELP zfs_pool_members_present count of expected by-id members visible when a pool is not imported\n"
METRICS+="# TYPE zfs_pool_members_present gauge\n"
METRICS+="# HELP zfs_health_last_run_seconds Unix timestamp of last successful check\n"
METRICS+="# TYPE zfs_health_last_run_seconds gauge\n"
@@ -40,16 +45,45 @@ for pool in "${EXPECTED_POOLS[@]}"; do
|| logger -t zfs-health-check "WARNING: ntfy post failed for $pool"
else
# Empty or error — pool not imported / missing
logger -t zfs-health-check "pool $pool: MISSING — alerting"
# Pool not imported. Distinguish two very different causes before alerting:
# devices ABSENT -> real hardware (cable/hub/enclosure/power)
# devices PRESENT -> pool merely not imported (stale cache, boot race) -> import fixes it
case "$pool" in
usb1-zfs) members="/dev/disk/by-id/usb-ASMT_2115_ACAAEBBB2E5F-0:0-part1 /dev/disk/by-id/wwn-0x5000cca234ca7110-part1" ;;
usb2-zfs) members="/dev/disk/by-id/wwn-0x50014ee2075b3126-part1 /dev/disk/by-id/wwn-0x50014ee211ed75f6-part1" ;;
*) members="" ;;
esac
present=0; total=0
for m in $members; do
total=$((total+1))
[ -e "$m" ] && present=$((present+1))
done
METRICS+="zfs_pool_present{pool=\"$pool\"} 0\n"
curl -sf \
-H "Priority: urgent" \
-H "Tags: rotating_light" \
-H "Title: PBS ZFS pool MISSING: $pool" \
-d "Pool $pool not imported on PBS. Check cables. Fix: zpool import $pool" \
"$NTFY_URL" \
|| logger -t zfs-health-check "WARNING: ntfy post failed for $pool"
METRICS+="zfs_pool_members_present{pool=\"$pool\"} $present\n"
if [ "$total" -gt 0 ] && [ "$present" -eq "$total" ]; then
# All members enumerated — this is a failed import, NOT a hardware fault.
logger -t zfs-health-check "pool $pool: NOT IMPORTED (all $total members present) — alerting"
curl -sf \
-H "Priority: high" \
-H "Tags: warning" \
-H "Title: PBS ZFS pool not imported: $pool" \
-d "Pool $pool not imported, but all $total members are present. Hardware is fine — likely failed auto-import. Fix: zpool import -d /dev/disk/by-id $pool" \
"$NTFY_URL" \
|| logger -t zfs-health-check "WARNING: ntfy post failed for $pool"
else
# Members missing (or unknown pool) — genuine hardware suspicion.
logger -t zfs-health-check "pool $pool: MISSING ($present/$total members present) — alerting"
curl -sf \
-H "Priority: urgent" \
-H "Tags: rotating_light" \
-H "Title: PBS ZFS pool MISSING: $pool" \
-d "Pool $pool not imported; only $present of $total members visible. Check cables/enclosure/power. Then: zpool import -d /dev/disk/by-id $pool" \
"$NTFY_URL" \
|| logger -t zfs-health-check "WARNING: ntfy post failed for $pool"
fi
fi
done