File tree 2 files changed +20
-3
lines changed
2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -3907,11 +3907,13 @@ planCache
3907
3907
totalSizeEstimateBytes : Long("<num>"),
3908
3908
classic : {
3909
3909
hits : Long("<num>"),
3910
- misses : Long("<num>")
3910
+ misses : Long("<num>"),
3911
+ skipped : Long("<num>")
3911
3912
},
3912
3913
sbe : {
3913
3914
hits : Long("<num>"),
3914
- misses: Long("<num>")
3915
+ misses: Long("<num>"),
3916
+ skipped : Long("<num>")
3915
3917
}
3916
3918
}
3917
3919
@@ -3948,6 +3950,13 @@ planCache
3948
3950
Number of classic execution engine query plans which were not found
3949
3951
in the query cache and went through the query planning phase.
3950
3952
3953
+ .. serverstatus:: planCache.classic.skipped
3954
+
3955
+ Number of classic execution engine query plans that were not found in the
3956
+ query cache because the query is ineligible for caching.
3957
+
3958
+ .. versionadded:: 7.3
3959
+
3951
3960
.. serverstatus:: planCache.sbe.hits
3952
3961
3953
3962
Number of |sbe-short| query plans found in the query
@@ -3958,6 +3967,13 @@ planCache
3958
3967
Number of |sbe-short| plans which were not found
3959
3968
in the query cache and went through the query planning phase.
3960
3969
3970
+ .. serverstatus:: planCache.sbe.skipped
3971
+
3972
+ Number of |sbe-short| query plans that were not found in the
3973
+ query cache because the query is ineligible for caching.
3974
+
3975
+ .. versionadded:: 7.3
3976
+
3961
3977
.. _server-status-queryStats:
3962
3978
3963
3979
queryStats
Original file line number Diff line number Diff line change @@ -39,4 +39,5 @@ includes the following new metrics:
39
39
40
40
- :serverstatus:`metrics.repl.waiters.replication`
41
41
- :serverstatus:`metrics.repl.waiters.opTime`
42
-
42
+ - :serverstatus:`planCache.classic.skipped`
43
+ - :serverstatus:`planCache.sbe.skipped`
You can’t perform that action at this time.
0 commit comments