2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-28 21:17:54 +00:00

alphabetically sort socket i/o counters

This commit is contained in:
Aydın Mercan 2024-05-31 18:12:08 +03:00
parent 9bc152dd25
commit 3be2d25e54
No known key found for this signature in database

View File

@ -8375,35 +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>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.
``TCP4Clients``/``TCP6Clients``
This indicates the number of IPv4/IPv6 clients currently connected over TCP.