]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
alphabetically sort socket i/o counters
authorAydın Mercan <aydin@isc.org>
Fri, 31 May 2024 15:12:08 +0000 (18:12 +0300)
committerAydın Mercan <aydin@isc.org>
Wed, 11 Sep 2024 09:51:34 +0000 (12:51 +0300)
doc/arm/reference.rst

index 9b14b0cf0028afce2a563784eed089cb8c3c5d9b..bb4d90d0d8e52f75a4c6792ba477626f2fc0dada 100644 (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>OpenFail``
-    This indicates the number of failures to open sockets.
+``<TYPE>Accept``
+    This indicates the number of incoming connections successfully accepted. This counter does not apply to the ``UDP`` type.
 
-``<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>Accept``
-    This indicates the number of incoming connections successfully accepted. This counter does not apply to the ``UDP`` type.
+``<TYPE>Open``
+    This indicates the number of sockets opened successfully.
 
-``<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.