From e9a70edb8b4b8ba42f165fc09f733265402544e0 Mon Sep 17 00:00:00 2001 From: Saravana Achu Mac Date: Mon, 4 May 2026 16:34:27 -0700 Subject: [PATCH] chore(monitoring): document health-check output What changed: - Documented the monitoring health-check script as a CLI/standalone output surface. - Kept console output unchanged because it is the command's user interface. Warning impact: - @lysnrai/monitoring scoped warnings: 5 -> 0. - Workspace warning total: 155 -> 150. Verification: - pnpm --filter @lysnrai/monitoring exec tsc --noEmit - pnpm --filter @lysnrai/monitoring exec eslint . --ext .ts,.tsx - pnpm lint --- services/monitoring/health-check.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/monitoring/health-check.ts b/services/monitoring/health-check.ts index cae0cee5..b45169ce 100644 --- a/services/monitoring/health-check.ts +++ b/services/monitoring/health-check.ts @@ -16,6 +16,8 @@ * USER_DASHBOARD_URL (default: http://localhost:3002) */ +/* eslint-disable no-console -- This is a CLI/standalone health reporter; console output is its user interface. */ + import { DEFAULT_SERVICES, generateHealthReport } from '@bytelyst/monitoring'; // ── CLI / HTTP server mode ──