-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Labels
Description
Describe the Task / Problem No health-check or basic metrics endpoints are available to monitor the service in production.
Steps to Reproduce
Inspect backend — no /health or /metrics endpoint found.
Expected Behavior-
A lightweight /health (or /healthz) endpoint that returns app status and dependency checks.
Optional /metrics for Prometheus (request counts, latencies).
Actual Behavior-
No standard health or metrics endpoints.
Suggested Fix-
Add /healthz route returning 200 when the service is healthy.
Optionally add prom-client for basic Prometheus metrics and expose /metrics.
Files to check-
backend/src/server.js or create backend/src/health.js
Labels