You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current list of glob patterns for ignoring health check requests do not match URLs with trailing slashes, i.e. https://mycoolapp.io/ping/ will not be ignored.
I work a lot with Django and the default behavior is to require trailing slashes on URL. Missing the slash will auto-redirect to the same URL with the trailing slash and disabling that option in the settings will result in 404s.
Solution Brainstorm
Could we update the default patterns to also match requests like */ping/ and */health/, etc.?
Product Area
Ingestion and Filtering
The text was updated successfully, but these errors were encountered:
Problem Statement
The current list of glob patterns for ignoring health check requests do not match URLs with trailing slashes, i.e.
https://mycoolapp.io/ping/
will not be ignored.I work a lot with Django and the default behavior is to require trailing slashes on URL. Missing the slash will auto-redirect to the same URL with the trailing slash and disabling that option in the settings will result in 404s.
Solution Brainstorm
Could we update the default patterns to also match requests like
*/ping/
and*/health/
, etc.?Product Area
Ingestion and Filtering
The text was updated successfully, but these errors were encountered: