Skip to content

health capability

health adds /health and /ready endpoints to your Go service so orchestrators know when to route traffic.

  • /health and /ready endpoints
  • Component health registration

Any production service behind a load balancer or in Kubernetes needs health endpoints. Without them, traffic is routed to unhealthy instances. The component registration pattern lets you signal readiness based on database connectivity, cache warmup, or any custom check.

Requires: http-api

Terminal window
verikt new my-service --language go --cap http-api,health
# or add to an existing service:
verikt add health

http-api

The Chi router foundation required by this capability.

observability

OpenTelemetry metrics alongside health endpoints.

platform

Platform lifecycle that integrates with health checks.