generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Better visibility on ingress errors #2517
Comments
Open
example error message: |
bradleydwyer
added
next
Work that will be be picked up next
and removed
triage
Issue needs triaging
labels
Aug 28, 2024
We should replace: logger.Debugf("%s %s", r.Method, r.URL.Path) with something like the following, so that all log messages have this context: logger = logger.Scope(fmt.Sprintf("%s %s", r.Method, r.URL.Path)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
logger.Debugf("bad request: %s", err.Error())
in ingress handler does not mention the verb involved and is difficult to know which request has failed in production.This is related to a webhook coming in and erroring, but the user can not observe exactly why/how it failed. This is also very handy when you have little feedback from a webhook provider.
The text was updated successfully, but these errors were encountered: