summaryrefslogtreecommitdiff
path: root/tools/wtstats/stat_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/wtstats/stat_data.py')
-rw-r--r--tools/wtstats/stat_data.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/tools/wtstats/stat_data.py b/tools/wtstats/stat_data.py
index 7c42ab4d926..a79cf1faf5e 100644
--- a/tools/wtstats/stat_data.py
+++ b/tools/wtstats/stat_data.py
@@ -6,6 +6,7 @@ no_scale_per_second_list = [
'cache: bytes currently in the cache',
'cache: eviction currently operating in aggressive mode',
'cache: files with active eviction walks',
+ 'cache: hazard pointer maximum array length',
'cache: maximum bytes configured',
'cache: maximum page size at eviction',
'cache: pages currently held in the cache',
@@ -27,6 +28,9 @@ no_scale_per_second_list = [
'reconciliation: split objects currently awaiting free',
'session: open cursor count',
'session: open session count',
+ 'thread-state: active filesystem fsync calls',
+ 'thread-state: active filesystem read calls',
+ 'thread-state: active filesystem write calls',
'transaction: transaction checkpoint currently running',
'transaction: transaction checkpoint generation',
'transaction: transaction checkpoint max time (msecs)',
@@ -60,7 +64,6 @@ no_scale_per_second_list = [
'btree: overflow pages',
'btree: row-store internal pages',
'btree: row-store leaf pages',
- 'cache: bytes currently in the cache',
'cache: overflow values cached in memory',
'LSM: bloom filters in the LSM tree',
'LSM: chunks in the LSM tree',
@@ -95,6 +98,9 @@ no_clear_list = [
'reconciliation: split objects currently awaiting free',
'session: open cursor count',
'session: open session count',
+ 'thread-state: active filesystem fsync calls',
+ 'thread-state: active filesystem read calls',
+ 'thread-state: active filesystem write calls',
'transaction: transaction checkpoint currently running',
'transaction: transaction checkpoint generation',
'transaction: transaction checkpoint max time (msecs)',
@@ -105,7 +111,6 @@ no_clear_list = [
'transaction: transaction range of IDs currently pinned by a checkpoint',
'transaction: transaction range of IDs currently pinned by named snapshots',
'btree: btree checkpoint generation',
- 'cache: bytes currently in the cache',
'session: open cursor count',
]
prefix_list = [
@@ -122,6 +127,7 @@ prefix_list = [
'thread-yield',
'async',
'btree',
+ 'thread-state',
'compression',
]
-groups = {'cursor': ['cursor', 'session'], 'lsm': ['LSM', 'transaction'], 'system': ['connection', 'data-handle', 'session'], 'evict': ['cache', 'connection', 'block-manager'], 'memory': ['cache', 'connection', 'reconciliation']} \ No newline at end of file
+groups = {'cursor': ['cursor', 'session'], 'lsm': ['LSM', 'transaction'], 'system': ['connection', 'data-handle', 'session', 'thread-state'], 'evict': ['block-manager', 'cache', 'connection', 'thread-state'], 'memory': ['cache', 'connection', 'reconciliation']} \ No newline at end of file