summaryrefslogtreecommitdiff
path: root/src/support
diff options
context:
space:
mode:
authorSusan LoVerso <sue@wiredtiger.com>2014-12-15 14:16:54 -0500
committerSusan LoVerso <sue@wiredtiger.com>2014-12-15 14:16:54 -0500
commit02341f9e21c66558e21653c4689622f65521b091 (patch)
tree0d7ba6a7ebe03d7c8101f73338e4ee28fc9c4acd /src/support
parent017aea543c4b85ef19516146a5df4fa2f2718ba7 (diff)
downloadmongo-02341f9e21c66558e21653c4689622f65521b091.tar.gz
Add a few more sweep stats to understand why the test sometimes fails.
Increase test time to 120 seconds.
Diffstat (limited to 'src/support')
-rw-r--r--src/support/stat.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/support/stat.c b/src/support/stat.c
index 21d56238f4a..a0a4290c597 100644
--- a/src/support/stat.c
+++ b/src/support/stat.c
@@ -408,8 +408,11 @@ __wt_stat_init_connection_stats(WT_CONNECTION_STATS *stats)
stats->cursor_search.desc = "cursor: cursor search calls";
stats->cursor_search_near.desc = "cursor: cursor search near calls";
stats->cursor_update.desc = "cursor: cursor update calls";
+ stats->dh_conn_ref.desc =
+ "data-handle: connection candidate referenced";
stats->dh_conn_handles.desc = "data-handle: connection dhandles swept";
stats->dh_conn_sweeps.desc = "data-handle: connection sweeps";
+ stats->dh_conn_tod.desc = "data-handle: connection time-of-death sets";
stats->dh_session_handles.desc = "data-handle: session dhandles swept";
stats->dh_session_sweeps.desc = "data-handle: session sweep attempts";
stats->log_slot_closes.desc = "log: consolidated slot closures";
@@ -563,8 +566,10 @@ __wt_stat_refresh_connection_stats(void *stats_arg)
stats->cursor_search.v = 0;
stats->cursor_search_near.v = 0;
stats->cursor_update.v = 0;
+ stats->dh_conn_ref.v = 0;
stats->dh_conn_handles.v = 0;
stats->dh_conn_sweeps.v = 0;
+ stats->dh_conn_tod.v = 0;
stats->dh_session_handles.v = 0;
stats->dh_session_sweeps.v = 0;
stats->log_slot_closes.v = 0;