@@ -1645,7 +1645,6 @@ metrics
1645
1645
},
1646
1646
query: {
1647
1647
allowDiskUseFalse: Long("<num>"),
1648
- planCacheTotalSizeEstimateBytes: Long("<num>"),
1649
1648
updateOneOpStyleBroadcastWithExactIDCount: Long("<num>"),
1650
1649
lookup: {
1651
1650
hashLookup: Long("<num>"),
@@ -3854,15 +3853,42 @@ planCache
3854
3853
3855
3854
.. code-block:: javascript
3856
3855
3857
- planCache: {
3858
- classic: { hits: Long("<num>"), misses: Long("<num>") },
3859
- sbe: { hits: Long("<num>"), misses: Long("<num>") }
3856
+ planCache : {
3857
+ totalQueryShapes : Long("<num>"),
3858
+ totalSizeEstimateBytes : Long("<num>"),
3859
+ classic : {
3860
+ hits : Long("<num>"),
3861
+ misses : Long("<num>")
3862
+ },
3863
+ sbe : {
3864
+ hits : Long("<num>"),
3865
+ misses: Long("<num>")
3866
+ }
3860
3867
}
3861
3868
3862
3869
.. serverstatus:: planCache
3863
3870
3864
3871
A document that reports query plan cache statistics.
3865
3872
3873
+ .. serverstatus:: planCache.totalQueryShapes
3874
+
3875
+ Approximate number of :term:`query shapes <query shape>`.
3876
+
3877
+ Prior to version 7.2, information on the number of query shapes was stored in
3878
+ the ``query.planCacheTotalQueryShapes`` field.
3879
+
3880
+ .. versionadded:: 7.2
3881
+
3882
+ .. serverstatus:: planCache.totalSizeEstimateBytes
3883
+
3884
+ Total size of the plan cache in bytes.
3885
+
3886
+ Prior to version 7.2, information on the plan cache size was stored in the
3887
+ ``query.planCacheTotalSizeEstimateBytes`` field.
3888
+
3889
+
3890
+ .. versionadded:: 7.2
3891
+
3866
3892
.. serverstatus:: planCache.classic.hits
3867
3893
3868
3894
Number of classic execution engine query plans found in the query
@@ -3875,12 +3901,12 @@ planCache
3875
3901
3876
3902
.. serverstatus:: planCache.sbe.hits
3877
3903
3878
- Number of slot-based execution engine query plans found in the query
3904
+ Number of |sbe-short| query plans found in the query
3879
3905
cache and reused to avoid the query planning phase.
3880
3906
3881
3907
.. serverstatus:: planCache.sbe.misses
3882
3908
3883
- Number of slot-based execution engine query plans which were not found
3909
+ Number of |sbe-short| plans which were not found
3884
3910
in the query cache and went through the query planning phase.
3885
3911
3886
3912
.. _server-status-queryAnalyzers:
@@ -6741,7 +6767,7 @@ wiredTiger
6741
6767
6742
6768
.. serverstatus:: wiredTiger.cache.bytes currently in the cache
6743
6769
6744
- Size in byte of the data currently in cache. This value should
6770
+ Size in bytes of the data currently in cache. This value should
6745
6771
not be greater than the ``maximum bytes configured`` value.
6746
6772
6747
6773
.. serverstatus:: wiredTiger.cache.unmodified pages evicted
0 commit comments