@@ -22234,6 +22234,7 @@ bc_be_queue integer
2223422234bc_dst ip
2223522235bc_dst_port integer
2223622236bc_err integer
22237+ bc_err_name string
2223722238bc_err_str string
2223822239bc_glitches integer
2223922240bc_http_major integer
@@ -22263,6 +22264,7 @@ fc_dst ip
2226322264fc_dst_is_local boolean
2226422265fc_dst_port integer
2226522266fc_err integer
22267+ fc_err_name string
2226622268fc_err_str string
2226722269fc_fackets integer
2226822270fc_glitches integer
@@ -22491,6 +22493,12 @@ bc_err : integer
2249122493 connection. See the "fc_err_str" fetch for a full list of error codes
2249222494 and their corresponding error message.
2249322495
22496+ bc_err_name : string
22497+ Returns the internal error name describing what problem happened on the
22498+ backend connection, resulting in a connection failure. This string is made of
22499+ a single word and is empty when no error is present. It corresponds to the
22500+ "name" column in the table presented in the "fc_err_str" keyword.
22501+
2249422502bc_err_str : string
2249522503 Returns an error message describing what problem happened on the current
2249622504 backend connection, resulting in a connection failure. See the
@@ -22673,73 +22681,79 @@ fc_err : integer
2267322681 described in section 8.2.5). See the "fc_err_str" fetch for a full list of
2267422682 error codes and their corresponding error message.
2267522683
22684+ fc_err_name : string
22685+ Returns the internal error name describing what problem happened on the
22686+ frontend connection, resulting in a connection failure. This string is made
22687+ of a single word and is empty when no error is present. It corresponds to the
22688+ "name" column in the table presented in the "fc_err_str" keyword.
22689+
2267622690fc_err_str : string
2267722691 Returns an error message describing what problem happened on the current
2267822692 connection, resulting in a connection failure. This string corresponds to the
2267922693 "message" part of the error log format (see section 8.2.5). See below for a
2268022694 full list of error codes and their corresponding error messages :
2268122695
22682- +----+---------------------------------------------------------------------------+
22683- | ID | message |
22684- +----+---------------------------------------------------------------------------+
22685- | 0 | "Success" |
22686- | 1 | "Reached configured maxconn value" |
22687- | 2 | "Too many sockets on the process" |
22688- | 3 | "Too many sockets on the system" |
22689- | 4 | "Out of system buffers" |
22690- | 5 | "Protocol or address family not supported" |
22691- | 6 | "General socket error" |
22692- | 7 | "Source port range exhausted" |
22693- | 8 | "Can't bind to source address" |
22694- | 9 | "Out of local source ports on the system" |
22695- | 10 | "Local source address already in use" |
22696- | 11 | "Connection closed while waiting for PROXY protocol header" |
22697- | 12 | "Connection error while waiting for PROXY protocol header" |
22698- | 13 | "Timeout while waiting for PROXY protocol header" |
22699- | 14 | "Truncated PROXY protocol header received" |
22700- | 15 | "Received something which does not look like a PROXY protocol header" |
22701- | 16 | "Received an invalid PROXY protocol header" |
22702- | 17 | "Received an unhandled protocol in the PROXY protocol header" |
22703- | 18 | "Connection closed while waiting for NetScaler Client IP header" |
22704- | 19 | "Connection error while waiting for NetScaler Client IP header" |
22705- | 20 | "Timeout while waiting for a NetScaler Client IP header" |
22706- | 21 | "Truncated NetScaler Client IP header received" |
22707- | 22 | "Received an invalid NetScaler Client IP magic number" |
22708- | 23 | "Received an unhandled protocol in the NetScaler Client IP header" |
22709- | 24 | "Connection closed during SSL handshake" |
22710- | 25 | "Connection error during SSL handshake" |
22711- | 26 | "Timeout during SSL handshake" |
22712- | 27 | "Too many SSL connections" |
22713- | 28 | "Out of memory when initializing an SSL connection" |
22714- | 29 | "Rejected a client-initiated SSL renegotiation attempt" |
22715- | 30 | "SSL client CA chain cannot be verified" |
22716- | 31 | "SSL client certificate not trusted" |
22717- | 32 | "Server presented an SSL certificate different from the configured one" |
22718- | 33 | "Server presented an SSL certificate different from the expected one" |
22719- | 34 | "SSL handshake failure" |
22720- | 35 | "SSL handshake failure after heartbeat" |
22721- | 36 | "Stopped a TLSv1 heartbeat attack (CVE-2014-0160)" |
22722- | 37 | "Attempt to use SSL on an unknown target (internal error)" |
22723- | 38 | "Server refused early data" |
22724- | 39 | "SOCKS4 Proxy write error during handshake" |
22725- | 40 | "SOCKS4 Proxy read error during handshake" |
22726- | 41 | "SOCKS4 Proxy deny the request" |
22727- | 42 | "SOCKS4 Proxy handshake aborted by server" |
22728- | 43 | "SSL fatal error" |
22729- | 44 | "Reverse connect failure" |
22730- | 45 | "Poller reported POLLERR" |
22731- | 46 | "ECONNREFUSED returned by OS" |
22732- | 47 | "ECONNRESET returned by OS" |
22733- | 48 | "ENETUNREACH returned by OS" |
22734- | 49 | "ENOMEM returned by OS" |
22735- | 50 | "EBADF returned by OS" |
22736- | 51 | "EFAULT returned by OS" |
22737- | 52 | "EINVAL returned by OS" |
22738- | 53 | "ENCONN returned by OS" |
22739- | 54 | "ENSOCK returned by OS" |
22740- | 55 | "ENOBUFS returned by OS" |
22741- | 56 | "EPIPE returned by OS" |
22742- +----+---------------------------------------------------------------------------+
22696+ +----+------------------+---------------- ---------------------------------------------------------+
22697+ | ID | name | message |
22698+ +----+------------------+---------------- ---------------------------------------------------------+
22699+ | 0 | - | "Success" |
22700+ | 1 | CONF_FDLIM | "Reached configured maxconn value" |
22701+ | 2 | PROC_FDLIM | "Too many sockets on the process" |
22702+ | 3 | SYS_FDLIM | "Too many sockets on the system" |
22703+ | 4 | SYS_MEMLIM | "Out of system buffers" |
22704+ | 5 | NOPROTO | "Protocol or address family not supported" |
22705+ | 6 | SOCK_ERR | "General socket error" |
22706+ | 7 | PORT_RANGE | "Source port range exhausted" |
22707+ | 8 | CANT_BIND | "Can't bind to source address" |
22708+ | 9 | FREE_PORTS | "Out of local source ports on the system" |
22709+ | 10 | ADDR_INUSE | "Local source address already in use" |
22710+ | 11 | PRX_EMPTY | "Connection closed while waiting for PROXY protocol header" |
22711+ | 12 | PRX_ABORT | "Connection error while waiting for PROXY protocol header" |
22712+ | 13 | PRX_TIMEOUT | "Timeout while waiting for PROXY protocol header" |
22713+ | 14 | PRX_TRUNCATED | "Truncated PROXY protocol header received" |
22714+ | 15 | PRX_NOT_HDR | "Received something which does not look like a PROXY protocol header" |
22715+ | 16 | PRX_BAD_HDR | "Received an invalid PROXY protocol header" |
22716+ | 17 | PRX_BAD_PROTO | "Received an unhandled protocol in the PROXY protocol header" |
22717+ | 18 | CIP_EMPTY | "Connection closed while waiting for NetScaler Client IP header" |
22718+ | 19 | CIP_ABORT | "Connection error while waiting for NetScaler Client IP header" |
22719+ | 20 | CIP_TIMEOUT | "Timeout while waiting for a NetScaler Client IP header" |
22720+ | 21 | CIP_TRUNCATED | "Truncated NetScaler Client IP header received" |
22721+ | 22 | CIP_BAD_MAGIC | "Received an invalid NetScaler Client IP magic number" |
22722+ | 23 | CIP_BAD_PROTO | "Received an unhandled protocol in the NetScaler Client IP header" |
22723+ | 24 | SSL_EMPTY | "Connection closed during SSL handshake" |
22724+ | 25 | SSL_ABORT | "Connection error during SSL handshake" |
22725+ | 26 | SSL_TIMEOUT | "Timeout during SSL handshake" |
22726+ | 27 | SSL_TOO_MANY | "Too many SSL connections" |
22727+ | 28 | SSL_NO_MEM | "Out of memory when initializing an SSL connection" |
22728+ | 29 | SSL_RENEG | "Rejected a client-initiated SSL renegotiation attempt" |
22729+ | 30 | SSL_CA_FAIL | "SSL client CA chain cannot be verified" |
22730+ | 31 | SSL_CRT_FAIL | "SSL client certificate not trusted" |
22731+ | 32 | SSL_MISMATCH | "Server presented an SSL certificate different from the configured one" |
22732+ | 33 | SSL_MISMATCH_SNI | "Server presented an SSL certificate different from the expected one" |
22733+ | 34 | SSL_HANDSHAKE | "SSL handshake failure" |
22734+ | 35 | SSL_HANDSHAKE_HB | "SSL handshake failure after heartbeat" |
22735+ | 36 | SSL_KILLED_HB | "Stopped a TLSv1 heartbeat attack (CVE-2014-0160)" |
22736+ | 37 | SSL_NO_TARGET | "Attempt to use SSL on an unknown target (internal error)" |
22737+ | 38 | SSL_EARLY_FAILED | "Server refused early data" |
22738+ | 39 | SOCKS4_SEND | "SOCKS4 Proxy write error during handshake" |
22739+ | 40 | SOCKS4_RECV | "SOCKS4 Proxy read error during handshake" |
22740+ | 41 | SOCKS4_DENY | "SOCKS4 Proxy deny the request" |
22741+ | 42 | SOCKS4_ABORT | "SOCKS4 Proxy handshake aborted by server" |
22742+ | 43 | SSL_FATAL | "SSL fatal error" |
22743+ | 44 | REVERSE | "Reverse connect failure" |
22744+ | 45 | POLLERR | "Poller reported POLLERR" |
22745+ | 46 | EREFUSED | "ECONNREFUSED returned by OS" |
22746+ | 47 | ERESET | "ECONNRESET returned by OS" |
22747+ | 48 | EUNREACH | "ENETUNREACH returned by OS" |
22748+ | 49 | ENOMEM | "ENOMEM returned by OS" |
22749+ | 50 | EBADF | "EBADF returned by OS" |
22750+ | 51 | EFAULT | "EFAULT returned by OS" |
22751+ | 52 | EINVAL | "EINVAL returned by OS" |
22752+ | 53 | ENCONN | "ENCONN returned by OS" |
22753+ | 54 | ENSOCK | "ENSOCK returned by OS" |
22754+ | 55 | ENOBUFS | "ENOBUFS returned by OS" |
22755+ | 56 | EPIPE | "EPIPE returned by OS" |
22756+ +----+------------------+---------------- ---------------------------------------------------------+
2274322757
2274422758fc_fackets : integer
2274522759 Returns the fack counter measured by the kernel for the client
0 commit comments