mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-03-09 21:07:43 +00:00
DOC: configuration: fix alphabetical ordering of {bs,fs}.aborted
These must be before {bs,fs}.id, not after. Should be backported wherever068ce2d5d2
("MINOR: stconn: Add samples to retrieve about stream aborts") is (normally 3.0). (cherry picked from commitb681a9e488
) Signed-off-by: Christopher Faulet <cfaulet@haproxy.com>
This commit is contained in:
parent
111e8590c1
commit
762f3df4e4
@ -23860,13 +23860,13 @@ Summary of sample fetch methods in this section and their respective types:
|
|||||||
|
|
||||||
keyword output type
|
keyword output type
|
||||||
----------------------------------------------------+-------------
|
----------------------------------------------------+-------------
|
||||||
bs.id integer
|
|
||||||
bs.aborted boolean
|
bs.aborted boolean
|
||||||
|
bs.id integer
|
||||||
bs.rst_code integer
|
bs.rst_code integer
|
||||||
distcc_body(<token>[,<occ>]) binary
|
distcc_body(<token>[,<occ>]) binary
|
||||||
distcc_param(<token>[,<occ>]) integer
|
distcc_param(<token>[,<occ>]) integer
|
||||||
fs.id integer
|
|
||||||
fs.aborted boolean
|
fs.aborted boolean
|
||||||
|
fs.id integer
|
||||||
fs.rst_code integer
|
fs.rst_code integer
|
||||||
payload(<offset>,<length>) binary
|
payload(<offset>,<length>) binary
|
||||||
payload_lv(<offset1>,<length>[,<offset2>]) binary
|
payload_lv(<offset1>,<length>[,<offset2>]) binary
|
||||||
@ -23899,14 +23899,14 @@ wait_end boolean
|
|||||||
|
|
||||||
Detailed list:
|
Detailed list:
|
||||||
|
|
||||||
bs.id : integer
|
|
||||||
Returns the multiplexer's stream ID on the server side. It is the
|
|
||||||
multiplexer's responsibility to return the appropriate information.
|
|
||||||
|
|
||||||
bs.aborted: boolean
|
bs.aborted: boolean
|
||||||
Returns true is an abort was received from the server for the current
|
Returns true is an abort was received from the server for the current
|
||||||
stream. Otherwise false is returned.
|
stream. Otherwise false is returned.
|
||||||
|
|
||||||
|
bs.id : integer
|
||||||
|
Returns the multiplexer's stream ID on the server side. It is the
|
||||||
|
multiplexer's responsibility to return the appropriate information.
|
||||||
|
|
||||||
bs.rst_code: integer
|
bs.rst_code: integer
|
||||||
Returns the reset code received from the server for the current stream. The
|
Returns the reset code received from the server for the current stream. The
|
||||||
code of the H2 RST_STREAM frame or the QUIC STOP_SENDING frame received from
|
code of the H2 RST_STREAM frame or the QUIC STOP_SENDING frame received from
|
||||||
@ -23939,15 +23939,15 @@ distcc_param(<token>[,<occ>]) : integer
|
|||||||
# send large files to the big farm
|
# send large files to the big farm
|
||||||
use_backend big_farm if { distcc_param(DOTI) gt 1000000 }
|
use_backend big_farm if { distcc_param(DOTI) gt 1000000 }
|
||||||
|
|
||||||
|
fs.aborted: boolean
|
||||||
|
Returns true is an abort was received from the client for the current
|
||||||
|
stream. Otherwise false is returned.
|
||||||
|
|
||||||
fs.id : integer
|
fs.id : integer
|
||||||
Returns the multiplexer's stream ID on the client side. It is the
|
Returns the multiplexer's stream ID on the client side. It is the
|
||||||
multiplexer's responsibility to return the appropriate information. For
|
multiplexer's responsibility to return the appropriate information. For
|
||||||
instance, on a raw TCP, 0 is always returned because there is no stream.
|
instance, on a raw TCP, 0 is always returned because there is no stream.
|
||||||
|
|
||||||
fs.aborted: boolean
|
|
||||||
Returns true is an abort was received from the client for the current
|
|
||||||
stream. Otherwise false is returned.
|
|
||||||
|
|
||||||
fs.rst_code: integer
|
fs.rst_code: integer
|
||||||
Returns the reset code received from the client for the current stream. The
|
Returns the reset code received from the client for the current stream. The
|
||||||
code of the H2 RST_STREAM frame or the QUIC STOP_SENDING frame received from
|
code of the H2 RST_STREAM frame or the QUIC STOP_SENDING frame received from
|
||||||
|
Loading…
Reference in New Issue
Block a user