diff options
author | Alex Gorrod <alexg@wiredtiger.com> | 2015-01-13 04:18:41 +0000 |
---|---|---|
committer | Alex Gorrod <alexg@wiredtiger.com> | 2015-01-13 04:18:41 +0000 |
commit | 5b4b034ee00d4a1c757c770be2ecf69bfadddaca (patch) | |
tree | f49a48752219d85f94e033d97341f1d7aeec5933 /dist | |
parent | 9c4b6113e1bb6bc3398e32d9190ff2e5c5f415c5 (diff) | |
download | mongo-5b4b034ee00d4a1c757c770be2ecf69bfadddaca.tar.gz |
Split out statistic for forced eviction. It's not always because the
page grew too large.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/stat_data.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dist/stat_data.py b/dist/stat_data.py index ae442bcc463..69e8d2ed21e 100644 --- a/dist/stat_data.py +++ b/dist/stat_data.py @@ -162,6 +162,8 @@ connection_stats = [ 'pages selected for eviction unable to be evicted'), CacheStat('cache_eviction_force', 'pages evicted because they exceeded the in-memory maximum'), + CacheStat('cache_eviction_force_delete', + 'pages evicted because they had chains of deleted items'), CacheStat('cache_eviction_force_fail', 'failed eviction of pages that exceeded the in-memory maximum'), CacheStat('cache_eviction_hazard', 'hazard pointer blocked page eviction'), |