Hey everyone,
Quick question for those of you deploying n8n on Render.com:
When you expose the /metrics
endpoint (N8N_METRICS=true
), do you add any authentication (like a Bearer token) to prevent it from being publicly accessible?
In more traditional setups (like Docker behind a reverse proxy or Kubernetes), this kind of endpoint typically lives inside a private network, only accessible internally (e.g., by Prometheus).
But with Render, unless you set up something custom, anything exposed is publicly reachable — which means the /metrics
endpoint can be accessed by anyone.
Even if traffic is low, each ping still consumes outbound bandwidth.
How you handle this ? Do you secure it, or just leave it open?
Thanks in advance for your insights!