🎁 New User? Get 20% off your first purchase with code NEWUSER20 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

Continuous Deployment
A practice where every code change that passes automated tests is automatically deployed to production.
Rolling Update
A deployment strategy that gradually replaces old application instances with new ones, maintaining availability throughout.
Makefile
A file containing build rules and commands that automates compilation and common project tasks using the make utility.
ArgoCD
A declarative GitOps continuous delivery tool for Kubernetes that automatically syncs cluster state with Git repositories.
Error Budget
The acceptable amount of unreliability allowed for a service, calculated as 100% minus the Service Level Objective.
Kubernetes
An open-source container orchestration platform that automates deploying, scaling, and managing containerized applications.
View All DevOps Terms →