Skip to content

Commit 145f194

Browse files
jason-price-mongodbjason-price-mongodb
andauthored
DOCS-15617-remove-all-mention-of-cluster-metrics-from-v6.1 (#1892)
Co-authored-by: jason-price-mongodb <[email protected]>
1 parent b09b544 commit 145f194

File tree

3 files changed

+0
-123
lines changed

3 files changed

+0
-123
lines changed

source/reference/command/serverStatus.txt

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,6 @@ connections
269269
"current" : <num>,
270270
"available" : <num>,
271271
"totalCreated" : <num>,
272-
"rejected" : <num>, // Added in MongoDB 6.1
273272
"active" : <num>,
274273
"threaded" : <num>,
275274
"exhaustIsMaster" : <num>,
@@ -308,14 +307,6 @@ connections
308307
Count of **all** incoming connections created to the server. This
309308
number includes connections that have since closed.
310309

311-
.. serverstatus:: connections.rejected
312-
313-
The number of incoming connections the server rejected because the
314-
server doesn't have the capacity to accept additional connections or
315-
the :setting:`net.maxIncomingConnections` setting is reached.
316-
317-
.. versionadded:: 6.1
318-
319310
.. serverstatus:: connections.active
320311

321312
The number of active client connections to the server. Active client
@@ -2610,7 +2601,6 @@ network
26102601
"clientsWaitingForData" : <num>
26112602
}
26122603
},
2613-
"listenerProcessingTime" : { durationMicros: <num> } // Added in MongoDB 6.1
26142604
}
26152605

26162606
.. serverstatus:: network
@@ -2791,22 +2781,6 @@ network
27912781
Number of clients using the ``fixed`` service executor that are
27922782
waiting for incoming data from the network.
27932783

2794-
.. serverstatus:: network.listenerProcessingTime
2795-
2796-
.. versionadded:: 6.1
2797-
2798-
A document that reports the total time the database listener spends
2799-
allocating incoming database connection requests to dedicated
2800-
threads.
2801-
2802-
.. serverstatus:: network.listenerProcessingTime.durationMicros
2803-
2804-
.. versionadded:: 6.1
2805-
2806-
Total time in microseconds the database listener spends allocating
2807-
incoming database connection requests to dedicated threads that
2808-
perform database operations.
2809-
28102784
opLatencies
28112785
~~~~~~~~~~~
28122786

@@ -5032,19 +5006,6 @@ transactions
50325006
When run on a :binary:`~bin.mongos`, a document with data about the
50335007
:doc:`transactions </core/transactions>` run on the instance.
50345008

5035-
.. serverstatus:: metrics.network
5036-
5037-
A document that reports the total time to establish server
5038-
connections.
5039-
5040-
.. versionadded:: 6.1
5041-
5042-
.. serverstatus:: metrics.network.totalEgressConnectionEstablishmentTimeMillis
5043-
5044-
The total time in milliseconds to establish server connections.
5045-
5046-
.. versionadded:: 6.1
5047-
50485009
.. serverstatus:: transactions.retriedCommandsCount
50495010

50505011
|mongod-only|

source/reference/parameters.txt

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1086,34 +1086,6 @@ General Parameters
10861086

10871087
:parameter:`connPoolMaxShardedConnsPerHost`
10881088

1089-
.. parameter:: slowConnectionThresholdMillis
1090-
1091-
*Default*: 100
1092-
1093-
|both|
1094-
1095-
Sets the time limit in milliseconds to log the establishment of slow
1096-
server connections.
1097-
1098-
If a connection takes longer to establish than the
1099-
:parameter:`slowConnectionThresholdMillis` parameter, an event is
1100-
added to the :ref:`log <log-messages-ref>` with the message ``msg``
1101-
field set to ``"Slow connection establishment"``.
1102-
1103-
The following example sets :parameter:`slowConnectionThresholdMillis`
1104-
to ``250`` milliseconds.
1105-
1106-
.. code-block:: bash
1107-
1108-
mongod --setParameter slowConnectionThresholdMillis=250
1109-
1110-
Or, if using the :dbcommand:`setParameter` command within
1111-
:binary:`~bin.mongosh`:
1112-
1113-
.. code-block:: javascript
1114-
1115-
db.adminCommand( { setParameter: 1, slowConnectionThresholdMillis: 250 } )
1116-
11171089
.. parameter:: connPoolMaxConnsPerHost
11181090

11191091
*Default*: 200

source/release-notes/6.1.txt

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -73,60 +73,6 @@ Improved Efficiency for Multiple Document Deletions
7373

7474
.. include:: /includes/multi-deletes.rst
7575

76-
``connPoolStats`` Metrics
77-
~~~~~~~~~~~~~~~~~~~~~~~~~
78-
79-
Starting in MongoDB 6.1, the :dbcommand:`connPoolStats` command has
80-
these output changes:
81-
82-
.. list-table::
83-
:header-rows: 1
84-
:widths: 50 50
85-
86-
* - Document
87-
- Field(s)
88-
89-
* - New :data:`connPoolStats.acquisitionWaitTimes` document that
90-
reports the wait times for requests to acquire a connection from
91-
:binary:`~bin.mongos` to :binary:`~bin.mongod`.
92-
- New fields:
93-
94-
- Time ranges with the number of connection requests in each
95-
range.
96-
- Total number of connection requests for all time ranges.
97-
98-
``serverStatus`` Metrics
99-
~~~~~~~~~~~~~~~~~~~~~~~~
100-
101-
Starting in MongoDB 6.1, the :dbcommand:`serverStatus` command and the
102-
:method:`db.serverStatus()` method have these output changes:
103-
104-
.. list-table::
105-
:header-rows: 1
106-
:widths: 50 50
107-
108-
* - Document
109-
- Field(s)
110-
111-
* - New :serverstatus:`network.listenerProcessingTime` document that
112-
reports the time the database listener spends allocating
113-
incoming database connection requests.
114-
- New field:
115-
116-
- :serverstatus:`network.listenerProcessingTime.durationMicros`
117-
118-
* - New :serverstatus:`metrics.network` document that reports the
119-
total time to establish server connections.
120-
- New field:
121-
122-
- :serverstatus:`metrics.network.totalEgressConnectionEstablishmentTimeMillis`
123-
124-
* - Addition to :serverstatus:`connections` document.
125-
- New field that reports the number of incoming connections the
126-
server has rejected.
127-
128-
- :serverstatus:`connections.rejected`
129-
13076
Storage Engine
13177
~~~~~~~~~~~~~~
13278

@@ -141,8 +87,6 @@ Starting in MongoDB 6.1, MongoDB adds the following new parameters:
14187
between retries after a write failure.
14288
- :parameter:`temporarilyUnavailableMaxRetries` limits the number of
14389
retries after a write failure.
144-
- :parameter:`slowConnectionThresholdMillis` sets the time limit to log
145-
the establishment of slow server connections.
14690

14791
Report an Issue
14892
---------------

0 commit comments

Comments
 (0)