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
Is your feature request related to a problem? Please describe.
Kubernetes has a liveness and a readiness probe that can be configured to use HTTP.
All of these requests use the kube-probe/<version> user agent.
Describe the solution you'd like
I would like to be able to exclude all requests with the kube-probe user agent, and other specific user agents if needed (the go module mirror comes to my mind)
Describe alternatives you've considered
Entering manually every probing endpoint in the WSGI ignore path, but that does not allow to have a default value that excludes automatically all kube-probe endpoints.
The text was updated successfully, but these errors were encountered:
I think an implementation could be excluded_agent in user_agent or user_agent.startswith(excluded_agent).
Or even excluded_agent == user_agent because the version does not change that often.
Is your feature request related to a problem? Please describe.
Kubernetes has a liveness and a readiness probe that can be configured to use HTTP.
All of these requests use the
kube-probe/<version>
user agent.Describe the solution you'd like
I would like to be able to exclude all requests with the kube-probe user agent, and other specific user agents if needed (the go module mirror comes to my mind)
Describe alternatives you've considered
Entering manually every probing endpoint in the WSGI ignore path, but that does not allow to have a default value that excludes automatically all kube-probe endpoints.
The text was updated successfully, but these errors were encountered: