summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorsueloverso <sue@mongodb.com>2016-07-28 11:57:06 -0400
committerGitHub <noreply@github.com>2016-07-28 11:57:06 -0400
commit8a8507cd60b5dd60bc1fa2978864d6b6421c9cad (patch)
tree8db208eb709c13d7ffa457440dfeb392e583baa0 /dist
parentd7a15d1798054c22fae98bb90b9badb24792d966 (diff)
downloadmongo-8a8507cd60b5dd60bc1fa2978864d6b6421c9cad.tar.gz
WT-2793 Enhance statistics related to overflow values (#2912)
* WT-2793 Remove very long running config. Rename the one we run. * Fix overflow stats. Make 130K overflow test use btree. * Add line to upgrading doc stating stat field removed.
Diffstat (limited to 'dist')
-rw-r--r--dist/stat_data.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/dist/stat_data.py b/dist/stat_data.py
index b7a1caa6701..576a66e981b 100644
--- a/dist/stat_data.py
+++ b/dist/stat_data.py
@@ -175,7 +175,6 @@ connection_stats = [
CacheStat('cache_bytes_leaf', 'tracked bytes belonging to leaf pages in the cache', 'no_clear,no_scale,size'),
CacheStat('cache_bytes_max', 'maximum bytes configured', 'no_clear,no_scale,size'),
CacheStat('cache_bytes_other', 'bytes not belonging to page images in the cache', 'no_clear,no_scale,size'),
- CacheStat('cache_bytes_overflow', 'tracked bytes belonging to overflow pages in the cache', 'no_clear,no_scale,size'),
CacheStat('cache_bytes_read', 'bytes read into cache', 'size'),
CacheStat('cache_bytes_write', 'bytes written from cache', 'size'),
CacheStat('cache_eviction_aggressive_set', 'eviction currently operating in aggressive mode', 'no_clear,no_scale'),
@@ -218,12 +217,14 @@ connection_stats = [
CacheStat('cache_inmem_splittable', 'in-memory page passed criteria to be split'),
CacheStat('cache_lookaside_insert', 'lookaside table insert calls'),
CacheStat('cache_lookaside_remove', 'lookaside table remove calls'),
+ CacheStat('cache_overflow_value', 'overflow values cached in memory', 'no_scale'),
CacheStat('cache_overhead', 'percentage overhead', 'no_clear,no_scale'),
CacheStat('cache_pages_dirty', 'tracked dirty pages in the cache', 'no_clear,no_scale'),
CacheStat('cache_pages_inuse', 'pages currently held in the cache', 'no_clear,no_scale'),
CacheStat('cache_pages_requested', 'pages requested from the cache'),
CacheStat('cache_read', 'pages read into cache'),
CacheStat('cache_read_lookaside', 'pages read into cache requiring lookaside entries'),
+ CacheStat('cache_read_overflow', 'overflow pages read into cache'),
CacheStat('cache_write', 'pages written from cache'),
CacheStat('cache_write_lookaside', 'page written requiring lookaside records'),
CacheStat('cache_write_restore', 'pages written requiring in-memory restoration'),