It is often useful to know if a cache is full of internal pages. I could have added page count tracking, but byte count tracking seems more useful (enough to justify the extra performance overhead).
112 lines
4.8 KiB
Python
112 lines
4.8 KiB
Python
# DO NOT EDIT: automatically built by dist/stat.py. */
|
|
|
|
no_scale_per_second_list = [
|
|
'async: maximum work queue length',
|
|
'cache: bytes currently in the cache',
|
|
'cache: maximum bytes configured',
|
|
'cache: maximum page size at eviction',
|
|
'cache: pages currently held in the cache',
|
|
'cache: percentage overhead',
|
|
'cache: tracked bytes belonging to internal pages in the cache',
|
|
'cache: tracked bytes belonging to leaf pages in the cache',
|
|
'cache: tracked bytes belonging to overflow pages in the cache',
|
|
'cache: tracked dirty bytes in the cache',
|
|
'cache: tracked dirty pages in the cache',
|
|
'connection: files currently open',
|
|
'log: maximum log file size',
|
|
'log: number of pre-allocated log files to create',
|
|
'log: total log buffer size',
|
|
'LSM: application work units currently queued',
|
|
'LSM: merge work units currently queued',
|
|
'LSM: switch work units currently queued',
|
|
'reconciliation: split bytes currently awaiting free',
|
|
'reconciliation: split objects currently awaiting free',
|
|
'session: open cursor count',
|
|
'session: open session count',
|
|
'transaction: transaction checkpoint currently running',
|
|
'transaction: transaction checkpoint generation',
|
|
'transaction: transaction checkpoint max time (msecs)',
|
|
'transaction: transaction checkpoint min time (msecs)',
|
|
'transaction: transaction checkpoint most recent time (msecs)',
|
|
'transaction: transaction checkpoint total time (msecs)',
|
|
'transaction: transaction range of IDs currently pinned',
|
|
'transaction: transaction range of IDs currently pinned by a checkpoint',
|
|
'block-manager: checkpoint size',
|
|
'block-manager: file allocation unit size',
|
|
'block-manager: file magic number',
|
|
'block-manager: file major version number',
|
|
'block-manager: file size in bytes',
|
|
'block-manager: minor version number',
|
|
'btree: btree checkpoint generation',
|
|
'btree: column-store fixed-size leaf pages',
|
|
'btree: column-store internal pages',
|
|
'btree: column-store variable-size deleted values',
|
|
'btree: column-store variable-size leaf pages',
|
|
'btree: fixed-record size',
|
|
'btree: maximum internal page key size',
|
|
'btree: maximum internal page size',
|
|
'btree: maximum leaf page key size',
|
|
'btree: maximum leaf page size',
|
|
'btree: maximum leaf page value size',
|
|
'btree: maximum tree depth',
|
|
'btree: number of key/value pairs',
|
|
'btree: overflow pages',
|
|
'btree: row-store internal pages',
|
|
'btree: row-store leaf pages',
|
|
'cache: overflow values cached in memory',
|
|
'LSM: bloom filters in the LSM tree',
|
|
'LSM: chunks in the LSM tree',
|
|
'LSM: highest merge generation in the LSM tree',
|
|
'LSM: total size of bloom filters',
|
|
'reconciliation: maximum blocks required for a page',
|
|
'session: open cursor count',
|
|
]
|
|
no_clear_list = [
|
|
'cache: bytes currently in the cache',
|
|
'cache: maximum bytes configured',
|
|
'cache: pages currently held in the cache',
|
|
'cache: percentage overhead',
|
|
'cache: tracked bytes belonging to internal pages in the cache',
|
|
'cache: tracked bytes belonging to leaf pages in the cache',
|
|
'cache: tracked bytes belonging to overflow pages in the cache',
|
|
'cache: tracked dirty bytes in the cache',
|
|
'cache: tracked dirty pages in the cache',
|
|
'connection: files currently open',
|
|
'log: maximum log file size',
|
|
'log: number of pre-allocated log files to create',
|
|
'log: total log buffer size',
|
|
'LSM: application work units currently queued',
|
|
'LSM: merge work units currently queued',
|
|
'LSM: switch work units currently queued',
|
|
'reconciliation: split bytes currently awaiting free',
|
|
'reconciliation: split objects currently awaiting free',
|
|
'session: open cursor count',
|
|
'session: open session count',
|
|
'transaction: transaction checkpoint currently running',
|
|
'transaction: transaction checkpoint generation',
|
|
'transaction: transaction checkpoint max time (msecs)',
|
|
'transaction: transaction checkpoint min time (msecs)',
|
|
'transaction: transaction checkpoint most recent time (msecs)',
|
|
'transaction: transaction checkpoint total time (msecs)',
|
|
'transaction: transaction range of IDs currently pinned',
|
|
'transaction: transaction range of IDs currently pinned by a checkpoint',
|
|
'btree: btree checkpoint generation',
|
|
'session: open cursor count',
|
|
]
|
|
prefix_list = [
|
|
'data-handle',
|
|
'reconciliation',
|
|
'LSM',
|
|
'log',
|
|
'cache',
|
|
'transaction',
|
|
'cursor',
|
|
'connection',
|
|
'session',
|
|
'block-manager',
|
|
'thread-yield',
|
|
'async',
|
|
'btree',
|
|
'compression',
|
|
]
|
|
groups = {'cursor': ['cursor', 'session'], 'lsm': ['LSM', 'transaction'], 'system': ['connection', 'data-handle', 'session'], 'evict': ['cache', 'connection', 'block-manager'], 'memory': ['cache', 'connection', 'reconciliation']} |