๐ŸŽ New User? Get 20% off your first purchase with code NEWUSER20 ยท โšก Instant download ยท ๐Ÿ”’ Secure checkout Register Now โ†’
Menu

Categories

DevOps Beginner

What is Health Check?

An endpoint or mechanism that reports whether an application is running correctly and ready to handle requests.

Health checks enable load balancers and orchestrators to detect unhealthy instances. Liveness probes check if the application is running (restart if not). Readiness probes check if it can handle traffic (remove from load balancer if not).

A health endpoint (/health or /healthz) typically checks database connectivity, disk space, memory usage, and dependent service availability. Kubernetes supports HTTP, TCP, and command-based health checks with configurable intervals and thresholds.

Related Terms

Feature Flag
A technique that allows enabling or disabling features in production without deploying new code, enabling safe rollouts and A/B testing.
Configuration Management
The practice of systematically managing and maintaining consistent server configurations across infrastructure.
Runbook
A documented set of standardized procedures for handling routine operations and incident response in production systems.
Git
A distributed version control system that tracks changes in source code during software development.
Helm
A package manager for Kubernetes that simplifies deploying and managing applications using reusable, configurable charts.
Error Budget
The acceptable amount of unreliability allowed for a service, calculated as 100% minus the Service Level Objective.
View All DevOps Terms โ†’