@@ -269,7 +269,7 @@ connections
269269 "current" : <num>,
270270 "available" : <num>,
271271 "totalCreated" : <num>,
272- "rejected" : <num>, // Added in MongoDB 6.1
272+ "rejected" : <num>, // Added in MongoDB 6.2
273273 "active" : <num>,
274274 "threaded" : <num>,
275275 "exhaustIsMaster" : <num>,
@@ -310,12 +310,12 @@ connections
310310
311311.. serverstatus:: connections.rejected
312312
313+ .. versionadded:: 6.2
314+
313315 The number of incoming connections the server rejected because the
314316 server doesn't have the capacity to accept additional connections or
315317 the :setting:`net.maxIncomingConnections` setting is reached.
316318
317- .. versionadded:: 6.1
318-
319319.. serverstatus:: connections.active
320320
321321 The number of active client connections to the server. Active client
@@ -1504,6 +1504,11 @@ metrics
15041504 totalOpened : Long("<num>")
15051505 }
15061506 },
1507+ network : { // Added in MongoDB 6.2
1508+ totalEgressConnectionEstablishmentTimeMillis : Long("<num>"),
1509+ totalIngressTLSConnections : Long("<num>"),
1510+ totalIngressTLSHandshakeTimeMillis : Long("<num>")
1511+ },
15071512 operation : {
15081513 scanAndOrder : Long("<num>"),
15091514 writeConflicts : Long("<num>")
@@ -2611,7 +2616,7 @@ network
26112616 "clientsWaitingForData" : <num>
26122617 }
26132618 },
2614- "listenerProcessingTime" : { durationMicros: <num> } // Added in MongoDB 6.1
2619+ "listenerProcessingTime" : { durationMicros: <num> } // Added in MongoDB 6.2
26152620 }
26162621
26172622.. serverstatus:: network
@@ -2794,15 +2799,15 @@ network
27942799
27952800.. serverstatus:: network.listenerProcessingTime
27962801
2797- .. versionadded:: 6.1
2802+ .. versionadded:: 6.2
27982803
27992804 A document that reports the total time the database listener spends
28002805 allocating incoming database connection requests to dedicated
28012806 threads.
28022807
28032808.. serverstatus:: network.listenerProcessingTime.durationMicros
28042809
2805- .. versionadded:: 6.1
2810+ .. versionadded:: 6.2
28062811
28072812 Total time in microseconds the database listener spends allocating
28082813 incoming database connection requests to dedicated threads that
@@ -5035,16 +5040,31 @@ transactions
50355040
50365041.. serverstatus:: metrics.network
50375042
5038- A document that reports the total time to establish server
5039- connections.
5043+ .. versionadded:: 6.2
50405044
5041- .. versionadded:: 6.1
5045+ A document that reports server network metrics.
50425046
50435047.. serverstatus:: metrics.network.totalEgressConnectionEstablishmentTimeMillis
50445048
5049+ .. versionadded:: 6.2
5050+
50455051 The total time in milliseconds to establish server connections.
50465052
5047- .. versionadded:: 6.1
5053+ .. serverstatus:: metrics.network.totalIngressTLSConnections
5054+
5055+ .. versionadded:: 6.2
5056+
5057+ The total number of incoming connections to the server that use TLS.
5058+ The number is cumulative and is the total after the server was
5059+ started.
5060+
5061+ .. serverstatus:: metrics.network.totalIngressTLSHandshakeTimeMillis
5062+
5063+ .. versionadded:: 6.2
5064+
5065+ The total time in milliseconds that incoming connections to the
5066+ server have to wait for the TLS network handshake to complete. The
5067+ number is cumulative and is the total after the server was started.
50485068
50495069.. serverstatus:: transactions.retriedCommandsCount
50505070
0 commit comments