From 7bd21921d152121297f28651198f6223d7a4a9e2 Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Mon, 25 Oct 2021 16:18:15 +0200 Subject: [PATCH] DOC: config: Fix alphabetical order of fc_* samples fc_* samples were not properly ordered. This patch may be backported as far as 1.8. --- doc/configuration.txt | 57 ++++++++++++++++++++++--------------------- 1 file changed, 29 insertions(+), 28 deletions(-) diff --git a/doc/configuration.txt b/doc/configuration.txt index cbf3c4ff9..b9d520fe2 100644 --- a/doc/configuration.txt +++ b/doc/configuration.txt @@ -18096,11 +18096,23 @@ fc_conn_err_str : string | 43 | "SSL fatal error" | +----+---------------------------------------------------------------------------+ +fc_fackets : integer + Returns the fack counter measured by the kernel for the client + connection. If the server connection is not established, if the connection is + not TCP or if the operating system does not support TCP_INFO, for example + Linux kernels before 2.4, the sample fetch fails. + fc_http_major : integer Reports the front connection's HTTP major version encoding, which may be 1 for HTTP/0.9 to HTTP/1.1 or 2 for HTTP/2. Note, this is based on the on-wire encoding and not on the version present in the request header. +fc_lost : integer + Returns the lost counter measured by the kernel for the client + connection. If the server connection is not established, if the connection is + not TCP or if the operating system does not support TCP_INFO, for example + Linux kernels before 2.4, the sample fetch fails. + fc_pp_authority : string Returns the authority TLV sent by the client in the PROXY protocol header, if any. @@ -18113,6 +18125,18 @@ fc_rcvd_proxy : boolean Returns true if the client initiated the connection with a PROXY protocol header. +fc_reordering : integer + Returns the reordering counter measured by the kernel for the client + connection. If the server connection is not established, if the connection is + not TCP or if the operating system does not support TCP_INFO, for example + Linux kernels before 2.4, the sample fetch fails. + +fc_retrans : integer + Returns the retransmits counter measured by the kernel for the client + connection. If the server connection is not established, if the connection is + not TCP or if the operating system does not support TCP_INFO, for example + Linux kernels before 2.4, the sample fetch fails. + fc_rtt() : integer Returns the Round Trip Time (RTT) measured by the kernel for the client connection. is facultative, by default the unit is milliseconds. @@ -18129,41 +18153,18 @@ fc_rttvar() : integer operating system does not support TCP_INFO, for example Linux kernels before 2.4, the sample fetch fails. -fc_unacked : integer - Returns the unacked counter measured by the kernel for the client connection. - If the server connection is not established, if the connection is not TCP or - if the operating system does not support TCP_INFO, for example Linux kernels - before 2.4, the sample fetch fails. - fc_sacked : integer Returns the sacked counter measured by the kernel for the client connection. If the server connection is not established, if the connection is not TCP or if the operating system does not support TCP_INFO, for example Linux kernels before 2.4, the sample fetch fails. -fc_retrans : integer - Returns the retransmits counter measured by the kernel for the client - connection. If the server connection is not established, if the connection is - not TCP or if the operating system does not support TCP_INFO, for example - Linux kernels before 2.4, the sample fetch fails. - -fc_fackets : integer - Returns the fack counter measured by the kernel for the client - connection. If the server connection is not established, if the connection is - not TCP or if the operating system does not support TCP_INFO, for example - Linux kernels before 2.4, the sample fetch fails. - -fc_lost : integer - Returns the lost counter measured by the kernel for the client - connection. If the server connection is not established, if the connection is - not TCP or if the operating system does not support TCP_INFO, for example - Linux kernels before 2.4, the sample fetch fails. -fc_reordering : integer - Returns the reordering counter measured by the kernel for the client - connection. If the server connection is not established, if the connection is - not TCP or if the operating system does not support TCP_INFO, for example - Linux kernels before 2.4, the sample fetch fails. +fc_unacked : integer + Returns the unacked counter measured by the kernel for the client connection. + If the server connection is not established, if the connection is not TCP or + if the operating system does not support TCP_INFO, for example Linux kernels + before 2.4, the sample fetch fails. fe_defbe : string Returns a string containing the frontend's default backend name. It can be -- 2.47.3