mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-26 21:53:48 +03:00
reverse_proxy: add placeholder http.reverse_proxy.retries (#6553)
* Add placeholder http.reverse_proxy.lb.retries * Renamed placeholder to http.reverse_proxy.retries
This commit is contained in:
parent
5c47c2f147
commit
c050a37e1c
1 changed files with 4 additions and 0 deletions
|
@ -67,6 +67,7 @@ func init() {
|
||||||
// `{http.reverse_proxy.upstream.duration_ms}` | Same as 'upstream.duration', but in milliseconds.
|
// `{http.reverse_proxy.upstream.duration_ms}` | Same as 'upstream.duration', but in milliseconds.
|
||||||
// `{http.reverse_proxy.duration}` | Total time spent proxying, including selecting an upstream, retries, and writing response.
|
// `{http.reverse_proxy.duration}` | Total time spent proxying, including selecting an upstream, retries, and writing response.
|
||||||
// `{http.reverse_proxy.duration_ms}` | Same as 'duration', but in milliseconds.
|
// `{http.reverse_proxy.duration_ms}` | Same as 'duration', but in milliseconds.
|
||||||
|
// `{http.reverse_proxy.retries}` | The number of retries actually performed to communicate with an upstream.
|
||||||
type Handler struct {
|
type Handler struct {
|
||||||
// Configures the method of transport for the proxy. A transport
|
// Configures the method of transport for the proxy. A transport
|
||||||
// is what performs the actual "round trip" to the backend.
|
// is what performs the actual "round trip" to the backend.
|
||||||
|
@ -443,6 +444,9 @@ func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request, next caddyht
|
||||||
retries++
|
retries++
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// number of retries actually performed
|
||||||
|
repl.Set("http.reverse_proxy.retries", retries)
|
||||||
|
|
||||||
if proxyErr != nil {
|
if proxyErr != nil {
|
||||||
return statusError(proxyErr)
|
return statusError(proxyErr)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue