Comprehensive health check utilities for system component monitoring.
Collection of health check functions that monitor critical system components including
database connectivity, cache performance, memory usage, and overall system health.
Designed for use with container orchestration systems (Kubernetes readiness/liveness probes)
and monitoring infrastructure. Each check returns standardized health status information
with timestamps and relevant metrics.
healthChecks
Example
// Check overall system health (Kubernetes readiness probe) constsystemHealth = awaithealthChecks.system(); if (systemHealth.status === 'healthy') { console.log('All systems operational'); }
Comprehensive health check utilities for system component monitoring.
Collection of health check functions that monitor critical system components including database connectivity, cache performance, memory usage, and overall system health. Designed for use with container orchestration systems (Kubernetes readiness/liveness probes) and monitoring infrastructure. Each check returns standardized health status information with timestamps and relevant metrics.
healthChecks
Example
Example
Example