diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2014-12-11 23:03:05 +1100 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2014-12-11 23:03:05 +1100 |
commit | 311240681dc07c1630707412318b3fc2dc9b2314 (patch) | |
tree | ef10133c78c9bb45802e2a4bfe66d3518381d7b5 | |
parent | 6bcd8588bd7fff3031375c0c90703f750e6be8da (diff) | |
download | mongo-311240681dc07c1630707412318b3fc2dc9b2314.tar.gz |
Update auto-generated files.
-rw-r--r-- | src/include/wiredtiger.in | 2 | ||||
-rw-r--r-- | src/support/stat.c | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/include/wiredtiger.in b/src/include/wiredtiger.in index 748f50734cd..b5df4d49cdd 100644 --- a/src/include/wiredtiger.in +++ b/src/include/wiredtiger.in @@ -3176,7 +3176,7 @@ extern int wiredtiger_extension_terminate(WT_CONNECTION *connection); #define WT_STAT_CONN_CURSOR_UPDATE 1056 /*! data-handle: connection dhandles swept */ #define WT_STAT_CONN_DH_CONN_HANDLES 1057 -/*! data-handle: connection dhandles attempts */ +/*! data-handle: connection sweeps */ #define WT_STAT_CONN_DH_CONN_SWEEPS 1058 /*! data-handle: session dhandles swept */ #define WT_STAT_CONN_DH_SESSION_HANDLES 1059 diff --git a/src/support/stat.c b/src/support/stat.c index 66b6abed708..21d56238f4a 100644 --- a/src/support/stat.c +++ b/src/support/stat.c @@ -408,9 +408,8 @@ __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_sweeps.desc = - "data-handle: connection dhandles attempts"; stats->dh_conn_handles.desc = "data-handle: connection dhandles swept"; + stats->dh_conn_sweeps.desc = "data-handle: connection sweeps"; 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"; @@ -564,8 +563,8 @@ __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_sweeps.v = 0; stats->dh_conn_handles.v = 0; + stats->dh_conn_sweeps.v = 0; stats->dh_session_handles.v = 0; stats->dh_session_sweeps.v = 0; stats->log_slot_closes.v = 0; |