summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2012-05-10 20:45:08 +0000
committerKeith Bostic <keith@wiredtiger.com>2012-05-10 20:45:08 +0000
commit5863331b50d8ec7fc9b691e71dfc6627f303d643 (patch)
tree53c34c80305511ffafe36da6107cb19305d3cefb /dist
parent206fcc84e7b2b4b978d854bdc8d6d937108b86e5 (diff)
downloadmongo-5863331b50d8ec7fc9b691e71dfc6627f303d643.tar.gz
Add a file statistics for write conflicts.
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 fe87f6a826a..61ef650aece 100644
--- a/dist/stat_data.py
+++ b/dist/stat_data.py
@@ -48,8 +48,8 @@ btree_stats = [
Stat('cursor_read_near', 'cursor-read-near'),
Stat('cursor_read_next', 'cursor-read-next'),
Stat('cursor_read_prev', 'cursor-read-prev'),
- Stat('cursor_resets', 'cursor-resets'),
Stat('cursor_removes', 'cursor-removes'),
+ Stat('cursor_resets', 'cursor-resets'),
Stat('cursor_updates', 'cursor-updates'),
Stat('extend', 'file: block allocations required file extension'),
Stat('file_allocsize', 'page size allocation unit'),
@@ -71,6 +71,7 @@ btree_stats = [
Stat('file_row_int_pages', 'row-store internal pages'),
Stat('file_row_leaf_pages', 'row-store leaf pages'),
Stat('file_size', 'file: size'),
+ Stat('file_write_conflicts', 'write generation conflicts'),
Stat('free', 'file: block frees'),
Stat('overflow_read', 'file: overflow pages read from the file'),
Stat('page_read', 'file: pages read from the file'),