Skip to content
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

[serverless/proxy]: override default ErrorHandler #32326

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 37 additions & 1 deletion pkg/serverless/proxy/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ package proxy

import (
"context"
"errors"
"net/http"
"net/http/httputil"
"net/url"
Expand Down Expand Up @@ -68,9 +69,44 @@ func newProxy(target string, processor invocationlifecycle.InvocationProcessor)
Scheme: "http",
Host: target,
}
proxy := httputil.NewSingleHostReverseProxy(url)

// The default error handler logs "http: proxy error: %v" then returns an HTTP 502 (bad gateway)
// response. This is unfortunate because it lacks much any context on the original request that
// failed, and the commonly observed error today is "context deadline exceeded", which is not
// actionnable if you don't know what request it was for. It also logs to STDERR and does not
// honor the agent's log level.
proxy.ErrorHandler = func(w http.ResponseWriter, r *http.Request, err error) {
log.Debugf(
"[serverless/proxy][%T] %s %s -- proxy error: %v",
// The dynamic type of processor informs about what kind of proxy this was (main/appsec)
processor,
// The request method and URL are useful to understand what exactly failed. We won't log
// the body (too large) or headers (risks containing sensitive data, such as API keys)
r.Method, r.URL,
// What happened that caused us to be called?
err,
)

// If the error is a [context.DeadlineExceeded], we return an HTTP 504 (gateway timeout)
// instead of the generic HTTP 502 (bad gateway) to give the client a better idea of what is
// going on (this may influence retry behavior, for example).
if errors.Is(err, context.DeadlineExceeded) {
w.WriteHeader(http.StatusGatewayTimeout)
} else {
// Return an HTTP 502 (bad gateway) error response; defer the retrying to the client.
w.WriteHeader(http.StatusBadGateway)
}

// Writing the error message as best-effort, we simply debug-log any error that occur here.
if _, err := w.Write([]byte(err.Error())); err != nil {
log.Debugf("[serverless/proxy][%T] failed to write error message to response body: %v", processor, err)
}
}

return &runtimeProxy{
target: url,
proxy: httputil.NewSingleHostReverseProxy(url),
proxy: proxy,
processor: processor,
}
}
Loading