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
// If downstream connection in listener failed due to transport socket (e.g. TLS handshake), provides the
244
247
// failure reason from the transport socket. The format of this field depends on the configured downstream
245
-
// transport socket. Common TLS failures are in :ref:`TLS trouble shooting <arch_overview_ssl_trouble_shooting>`.
248
+
// transport socket. Common TLS failures are in :ref:`TLS troubleshooting <arch_overview_ssl_trouble_shooting>`.
246
249
stringdownstream_transport_failure_reason=28;
247
250
248
251
// For HTTP: Total number of bytes sent to the downstream by the http stream.
249
-
// For TCP: Total number of bytes sent to the downstream by the tcp proxy.
252
+
// For TCP: Total number of bytes sent to the downstream by the :ref:`TCP Proxy <config_network_filters_tcp_proxy>`.
250
253
uint64downstream_wire_bytes_sent=29;
251
254
252
255
// For HTTP: Total number of bytes received from the downstream by the http stream. Envoy over counts sizes of received HTTP/1.1 pipelined requests by adding up bytes of requests in the pipeline to the one currently being processed.
253
-
// For TCP: Total number of bytes received from the downstream by the tcp proxy.
256
+
// For TCP: Total number of bytes received from the downstream by the :ref:`TCP Proxy <config_network_filters_tcp_proxy>`.
254
257
uint64downstream_wire_bytes_received=30;
255
258
256
259
// For HTTP: Total number of bytes sent to the upstream by the http stream. This value accumulates during upstream retries.
257
-
// For TCP: Total number of bytes sent to the upstream by the tcp proxy.
260
+
// For TCP: Total number of bytes sent to the upstream by the :ref:`TCP Proxy <config_network_filters_tcp_proxy>`.
258
261
uint64upstream_wire_bytes_sent=31;
259
262
260
263
// For HTTP: Total number of bytes received from the upstream by the http stream.
261
-
// For TCP: Total number of bytes sent to the upstream by the tcp proxy.
264
+
// For TCP: Total number of bytes sent to the upstream by the :ref:`TCP Proxy <config_network_filters_tcp_proxy>`.
262
265
uint64upstream_wire_bytes_received=32;
263
266
264
267
// The type of the access log, which indicates when the log was recorded.
@@ -297,7 +300,7 @@ message ResponseFlags {
297
300
// Indicates there was no healthy upstream.
298
301
boolno_healthy_upstream=2;
299
302
300
-
// Indicates an there was an upstream request timeout.
303
+
// Indicates there was an upstream request timeout.
301
304
boolupstream_request_timeout=3;
302
305
303
306
// Indicates local codec level reset was sent on the stream.
@@ -358,7 +361,7 @@ message ResponseFlags {
358
361
// Indicates that a filter configuration is not available.
359
362
boolno_filter_config_found=22;
360
363
361
-
// Indicates that request or connection exceeded the downstream connection duration.
364
+
// Indicates that the request or connection exceeded the downstream connection duration.
362
365
boolduration_timeout=23;
363
366
364
367
// Indicates there was an HTTP protocol error in the upstream response.
0 commit comments