@@ -1791,10 +1791,10 @@ opcounters
1791
1791
1792
1792
.. serverstatus:: opcounters.getmore
1793
1793
1794
- The total number of "getmore" operations since the :binary:`~bin.mongod`
1795
- instance last started. This counter can be high even if the query
1796
- count is low. Secondary nodes send ``getMore`` operations as part of
1797
- the replication process.
1794
+ The total number of :dbcommand:`getMore` operations since the
1795
+ :binary:`~bin.mongod` instance last started. This counter can be high
1796
+ even if the query count is low. Secondary nodes send
1797
+ :dbcommand:`getMore` operations as part of the replication process.
1798
1798
1799
1799
.. include:: /includes/extracts/4.2-changes-opcounters-type.rst
1800
1800
@@ -1876,10 +1876,10 @@ opcountersRepl
1876
1876
1877
1877
.. serverstatus:: opcountersRepl.getmore
1878
1878
1879
- The total number of "getmore" operations since the :binary:`~bin.mongod`
1880
- instance last started. This counter can be high even if the query
1881
- count is low. Secondary nodes send ``getMore`` operations as part of
1882
- the replication process.
1879
+ The total number of :dbcommand:`getMore` operations since the
1880
+ :binary:`~bin.mongod` instance last started. This counter can be high
1881
+ even if the query count is low. Secondary nodes send
1882
+ :dbcommand:`getMore` operations as part of the replication process.
1883
1883
1884
1884
.. include:: /includes/extracts/4.2-changes-opcountersRepl-type.rst
1885
1885
@@ -3963,6 +3963,10 @@ metrics
3963
3963
},
3964
3964
"notMasterLegacyUnacknowledgedWrites" : <NumberLong>,
3965
3965
"notMasterUnacknowledgedWrites" : <NumberLong>,
3966
+ "oplogGetMoresProcessed" : {
3967
+ "num" : <NumberLong>,
3968
+ "totalMillis" : <NumberLong>
3969
+ },
3966
3970
"ops" : <NumberLong>,
3967
3971
"readersCreated" : <NumberLong>,
3968
3972
"replSetUpdatePosition" : {
@@ -4328,6 +4332,29 @@ metrics
4328
4332
4329
4333
.. versionadded:: 4.2
4330
4334
4335
+ .. serverstatus:: metrics.repl.network.oplogGetMoresProcessed
4336
+
4337
+ A document that reports the number of :dbcommand:`getMore`
4338
+ commands to fetch the :term:`oplog` that a node processed as a sync
4339
+ source.
4340
+
4341
+ .. versionadded:: 4.4
4342
+
4343
+ .. serverstatus:: metrics.repl.network.oplogGetMoresProcessed.num
4344
+
4345
+ The number of :dbcommand:`getMore` commands to fetch the
4346
+ :term:`oplog` that a node processed as a sync source.
4347
+
4348
+ .. versionadded:: 4.4
4349
+
4350
+ .. serverstatus:: metrics.repl.network.oplogGetMoresProcessed.totalMillis
4351
+
4352
+ The time, in milliseconds, that a node spent processing the
4353
+ :dbcommand:`getMore` commands counted in
4354
+ :serverstatus:`metrics.repl.network.oplogGetMoresProcessed.num`.
4355
+
4356
+ .. versionadded:: 4.4
4357
+
4331
4358
.. serverstatus:: metrics.repl.network.ops
4332
4359
4333
4360
The total
0 commit comments