access log: add flag for "upstream retry count exceeded" (#5371)

* access log: add flag for "upstream retry count exceeded"

Signed-off-by: Greg Greenway <ggreenway@apple.com>

Mirrored from https://github.com/envoyproxy/envoy @ e3676ab71928c73b0f299a9cb08a0ca6cca63e35
pull/620/head
data-plane-api(CircleCI) 6 years ago
parent 1c3d9d4a5c
commit b0ac646b5a
  1. 3
      envoy/config/filter/accesslog/v2/accesslog.proto
  2. 4
      envoy/data/accesslog/v2/accesslog.proto

@ -183,7 +183,8 @@ message ResponseFlagFilter {
"RL",
"UAEX",
"RLSE",
"DC"
"DC",
"URX"
]
}];
}

@ -185,12 +185,14 @@ message ResponseFlags {
// Indicates if the request was deemed unauthorized and the reason for it.
Unauthorized unauthorized_details = 13;
// [#not-implemented-hide:] Hide from docs.
// Indicates that the request was rejected because there was an error in rate limit service.
bool rate_limit_service_error = 14;
// Indicates the stream was reset due to a downstream connection termination.
bool downstream_connection_termination = 15;
// Indicates that the upstream retry limit was exceeded, resulting in a downstream error.
bool upstream_retry_limit_exceeded = 16;
}
// [#not-implemented-hide:]

Loading…
Cancel
Save