summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/dist/stat_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/dist/stat_data.py')
-rw-r--r--src/third_party/wiredtiger/dist/stat_data.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/third_party/wiredtiger/dist/stat_data.py b/src/third_party/wiredtiger/dist/stat_data.py
index bd628e7418a..23243227892 100644
--- a/src/third_party/wiredtiger/dist/stat_data.py
+++ b/src/third_party/wiredtiger/dist/stat_data.py
@@ -186,7 +186,9 @@ connection_stats = [
# Dhandle statistics
##########################################
DhandleStat('dh_conn_handles', 'connection dhandles swept'),
+ DhandleStat('dh_conn_ref', 'connection candidate referenced'),
DhandleStat('dh_conn_sweeps', 'connection sweeps'),
+ DhandleStat('dh_conn_tod', 'connection time-of-death sets'),
DhandleStat('dh_session_handles', 'session dhandles swept'),
DhandleStat('dh_session_sweeps', 'session sweep attempts'),
@@ -348,14 +350,16 @@ dsrc_stats = [
BtreeStat('btree_fixed_len', 'fixed-record size', 'no_aggregate,no_scale'),
BtreeStat('btree_maximum_depth',
'maximum tree depth', 'max_aggregate,no_scale'),
- BtreeStat('btree_maxintlitem',
- 'maximum internal page item size', 'no_aggregate,no_scale'),
+ BtreeStat('btree_maxintlkey',
+ 'maximum internal page key size', 'no_aggregate,no_scale'),
BtreeStat('btree_maxintlpage',
'maximum internal page size', 'no_aggregate,no_scale'),
- BtreeStat('btree_maxleafitem',
- 'maximum leaf page item size', 'no_aggregate,no_scale'),
+ BtreeStat('btree_maxleafkey',
+ 'maximum leaf page key size', 'no_aggregate,no_scale'),
BtreeStat('btree_maxleafpage',
'maximum leaf page size', 'no_aggregate,no_scale'),
+ BtreeStat('btree_maxleafvalue',
+ 'maximum leaf page value size', 'no_aggregate,no_scale'),
BtreeStat('btree_overflow', 'overflow pages', 'no_scale'),
BtreeStat('btree_row_internal', 'row-store internal pages', 'no_scale'),
BtreeStat('btree_row_leaf', 'row-store leaf pages', 'no_scale'),