From e4a41144e04a5e572f5531614deb6ed282d5a4de 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. (cherry picked from commit 7bd21921d152121297f28651198f6223d7a4a9e2) Signed-off-by: Christopher Faulet (cherry picked from commit 9f074f68ccf8d91e2fc8b7e070b22ff396881ad6) Signed-off-by: Christopher Faulet --- doc/configuration.txt | 57 +++++++++++++++++++++++++------------------------ 1 file changed, 29 insertions(+), 28 deletions(-) diff --git a/doc/configuration.txt b/doc/configuration.txt index 9f6fde1..a45c635 100644 --- a/doc/configuration.txt +++ b/doc/configuration.txt @@ -16718,11 +16718,23 @@ dst_port : integer a same server, or to pass the destination port information to a server using an HTTP header. +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. @@ -16735,6 +16747,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. @@ -16751,41 +16775,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 -- 1.7.10.4