2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 01:59:26 +00:00

new: doc: Document TCP4Clients/TCP6Clients

Future port the missing TCP4Clients/TCP6Clients documentation entry.

Commit abc47f5ce4a50ab2d3b23505914e9c65f856262b added two new statistics
counters without documenting them.  Add the missing counter descriptions
to the ARM.

(cherry picked from commit cb7924009152a4b8b1ec82a50bdb112541e9ec74)

Merge branch 'aydin/tcpclient-doc' into 'main'

See merge request isc-projects/bind9!9078
This commit is contained in:
Aydın Mercan 2024-09-11 10:06:37 +00:00
commit 19b23b3ed8

View File

@ -8375,32 +8375,35 @@ Socket I/O statistics counters are defined per socket type, which are
a socket type. Not all counters are available for all socket types;
exceptions are noted in the descriptions.
``<TYPE>Open``
This indicates the number of sockets opened successfully.
``<TYPE>Accept``
This indicates the number of incoming connections successfully accepted. This counter does not apply to the ``UDP`` type.
``<TYPE>OpenFail``
This indicates the number of failures to open sockets.
``<TYPE>Close``
This indicates the number of closed sockets.
``<TYPE>AcceptFail``
This indicates the number of failures to accept incoming connection requests. This counter does not apply to the ``UDP`` type.
``<TYPE>BindFail``
This indicates the number of failures to bind sockets.
``<TYPE>Clients``
This indicates the number of currently conencted clients. This counter does not apply to the ``UDP`` type.
``<TYPE>Close``
This indicates the number of closed sockets.
``<TYPE>ConnFail``
This indicates the number of failures to connect sockets.
``<TYPE>Conn``
This indicates the number of connections established successfully.
``<TYPE>AcceptFail``
This indicates the number of failures to accept incoming connection requests. This counter does not apply to the ``UDP`` type.
``<TYPE>Open``
This indicates the number of sockets opened successfully.
``<TYPE>Accept``
This indicates the number of incoming connections successfully accepted. This counter does not apply to the ``UDP`` type.
``<TYPE>SendErr``
This indicates the number of errors in socket send operations.
``<TYPE>OpenFail``
This indicates the number of failures to open sockets.
``<TYPE>RecvErr``
This indicates the number of errors in socket receive operations, including errors of send operations on a connected UDP socket, notified by an ICMP error message.
``<TYPE>SendErr``
This indicates the number of errors in socket send operations.