summaryrefslogtreecommitdiff
path: root/dist/stat_data.py
diff options
context:
space:
mode:
authorSusan LoVerso <sue@wiredtiger.com>2014-11-12 14:23:20 -0500
committerSusan LoVerso <sue@wiredtiger.com>2014-11-12 14:23:20 -0500
commit3f23463624bdb8aff1f19991979b4c81c1f48524 (patch)
tree0b6f4b1e888cefa48159ebc0106c56a702600535 /dist/stat_data.py
parent08202d30c5023d2d2631b44acfa2b1426301eec4 (diff)
downloadmongo-3f23463624bdb8aff1f19991979b4c81c1f48524.tar.gz
Add checkpoint timer stats. #1374
Diffstat (limited to 'dist/stat_data.py')
-rw-r--r--dist/stat_data.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/dist/stat_data.py b/dist/stat_data.py
index 47ef87a3f7f..59f519b6d50 100644
--- a/dist/stat_data.py
+++ b/dist/stat_data.py
@@ -203,6 +203,16 @@ connection_stats = [
##########################################
TxnStat('txn_begin', 'transaction begins'),
TxnStat('txn_checkpoint', 'transaction checkpoints'),
+ TxnStat('txn_checkpoint_time_max', 'transaction checkpoint maximum time',
+ 'no_aggregate,no_clear,no_scale'),
+ TxnStat('txn_checkpoint_time_min', 'transaction checkpoint minimum time',
+ 'max_aggregate,no_clear,no_scale'),
+ TxnStat('txn_checkpoint_time_recent',
+ 'transaction checkpoint most recent time',
+ 'no_aggregate,no_clear,no_scale'),
+ TxnStat('txn_checkpoint_time_total',
+ 'transaction checkpoint total time',
+ 'no_aggregate,no_clear,no_scale'),
TxnStat('txn_checkpoint_running',
'transaction checkpoint currently running',
'no_aggregate,no_clear,no_scale'),