Disable logging for health check endpoint
- Add log: false option to /health route to prevent K8s probe spam in logs - Remove incorrect logger filter configuration from runtime.exs
This commit is contained in:
parent
e02c2d2b8f
commit
02e0744c3c
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ defmodule ToweropsWeb.Router do
|
|||
|
||||
# Health check endpoint for Kubernetes probes (no authentication required)
|
||||
scope "/", ToweropsWeb do
|
||||
get "/health", HealthController, :index
|
||||
get "/health", HealthController, :index, log: false
|
||||
end
|
||||
|
||||
scope "/", ToweropsWeb do
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue