Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 765 Bytes

File metadata and controls

20 lines (14 loc) · 765 Bytes

AL1106: Missing health checks

Property Value
Severity Warning
Category ASP.NET Core
Code fix No
Analyzer Al1106MissingHealthChecksAnalyzer
Enabled by default Yes

Description

Health checks are essential for container orchestration platforms (Kubernetes, Docker Swarm) to determine service availability. Add builder.Services.AddHealthChecks() and app.MapHealthChecks() to expose /health endpoints for liveness and readiness probes.

See also