Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
01870547
Commit
01870547
authored
Sep 18, 2013
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#50 add long tail counts to global status
parent
81e63d1d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ft/checkpoint.cc
ft/checkpoint.cc
+3
-3
No files found.
ft/checkpoint.cc
View file @
01870547
...
...
@@ -164,9 +164,9 @@ status_init(void) {
STATUS_INIT
(
CP_CLIENT_WAIT_ON_MO
,
nullptr
,
UINT64
,
"non-checkpoint client wait on mo lock"
,
TOKU_ENGINE_STATUS
);
STATUS_INIT
(
CP_CLIENT_WAIT_ON_CS
,
nullptr
,
UINT64
,
"non-checkpoint client wait on cs lock"
,
TOKU_ENGINE_STATUS
);
STATUS_INIT
(
CP_BEGIN_TIME
,
nullptr
,
UINT64
,
"checkpoint begin time"
,
TOKU_ENGINE
_STATUS
);
STATUS_INIT
(
CP_LONG_BEGIN_COUNT
,
nullptr
,
UINT64
,
"long checkpoint begin count"
,
TOKU_ENGINE_STATUS
|
TOKU_GLOBAL_STATUS
);
STATUS_INIT
(
CP_LONG_BEGIN_TIME
,
nullptr
,
UINT64
,
"long checkpoint begin time"
,
TOKU_ENGINE_STATUS
|
TOKU_GLOBAL_STATUS
);
STATUS_INIT
(
CP_BEGIN_TIME
,
CHECKPOINT_BEGIN_TIME
,
UINT64
,
"checkpoint begin time"
,
TOKU_ENGINE_STATUS
|
TOKU_GLOBAL
_STATUS
);
STATUS_INIT
(
CP_LONG_BEGIN_COUNT
,
CHECKPOINT_LONG_BEGIN_COUNT
,
UINT64
,
"long checkpoint begin count"
,
TOKU_ENGINE_STATUS
|
TOKU_GLOBAL_STATUS
);
STATUS_INIT
(
CP_LONG_BEGIN_TIME
,
CHECKPOINT_LONG_BEGIN_TIME
,
UINT64
,
"long checkpoint begin time"
,
TOKU_ENGINE_STATUS
|
TOKU_GLOBAL_STATUS
);
cp_status
.
initialized
=
true
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment