diff options
Diffstat (limited to 'src/mongo/db/stats/counters.h')
-rw-r--r-- | src/mongo/db/stats/counters.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mongo/db/stats/counters.h b/src/mongo/db/stats/counters.h index aa11c84c2f1..2bb6870a7b0 100644 --- a/src/mongo/db/stats/counters.h +++ b/src/mongo/db/stats/counters.h @@ -315,4 +315,10 @@ private: }; extern OperatorCountersMatchExpressions operatorCountersMatchExpressions; + +// Track the number of {multi:true} updates. +extern Counter64 updateManyCount; +// Track the number of deleteMany calls. +extern Counter64 deleteManyCount; + } // namespace mongo |