DOC: config: fix ordering for "txn.*" fetches

Properly re-order "txn.*" fetches by alphabetical name.
This commit is contained in:
Aurelien DARRAGON 2024-01-30 16:20:41 +01:00
parent 4455756c26
commit 8ede0fb1d1

View File

@ -20514,8 +20514,8 @@ str(<string>) string
table_avl([<table>]) integer table_avl([<table>]) integer
table_cnt([<table>]) integer table_cnt([<table>]) integer
thread integer thread integer
txn.id32 integer
txn.conn_retries integer txn.conn_retries integer
txn.id32 integer
txn.sess_term_state string txn.sess_term_state string
uuid([<version>]) string uuid([<version>]) string
var(<var-name>[,<default>]) undefined var(<var-name>[,<default>]) undefined
@ -20966,18 +20966,18 @@ thread : integer
the function, between 0 and (global.nbthread-1). This is useful for logging the function, between 0 and (global.nbthread-1). This is useful for logging
and debugging purposes. and debugging purposes.
txn.id32 : integer
Returns the internal transaction ID. It is a 32bits integer. So, in absolute,
its value is not unique, transaction IDs may wrap. The wrapping period
depends on the request rate. In practice, it should not be an issue. For a
true unique ID, see "unique-id-format" directive.
txn.conn_retries : integer txn.conn_retries : integer
Returns the the number of connection retries experienced by this stream when Returns the the number of connection retries experienced by this stream when
trying to connect to the server. This value is subject to change while the trying to connect to the server. This value is subject to change while the
connection is not fully established. For HTTP connections, the value may be connection is not fully established. For HTTP connections, the value may be
affected by L7 retries. affected by L7 retries.
txn.id32 : integer
Returns the internal transaction ID. It is a 32bits integer. So, in absolute,
its value is not unique, transaction IDs may wrap. The wrapping period
depends on the request rate. In practice, it should not be an issue. For a
true unique ID, see "unique-id-format" directive.
txn.sess_term_state : string txn.sess_term_state : string
Returns the TCP or HTTP stream termination state, as reported in the log. It Returns the TCP or HTTP stream termination state, as reported in the log. It
is a 2-characters string, The final stream state followed by the event which is a 2-characters string, The final stream state followed by the event which