dant3 commented on code in PR #7398: URL: https://github.com/apache/ignite-3/pull/7398#discussion_r2686038239
########## docs/_docs/administrators-guide/metrics/metrics-list.adoc: ########## @@ -141,16 +141,34 @@ NOTE: Each link:administrators-guide/storage/storage-overview[storage profile] w | CpSyncedPages | The number of fsynced pages in the current checkpoint. | CpWriteSpeed | The checkpoint write speed, in pages per second. The value is averaged over the last 3 checkpoints plus the current one. | CurrDirtyRatio | The current ratio of dirty pages (dirty vs total), expressed as a fraction. The fraction is computed for each segment in the current region, and the highest value becomes "current." +| DirtyPages | Current number of dirty pages in memory. | LastEstimatedSpeedForMarkAll | The last estimated speed of marking all clean pages dirty to the end of a checkpoint, in pages per second. +| LoadedPages | Current number of pages loaded in memory. | MaxSize | The maximum in-memory region size in bytes. | MarkDirtySpeed | The speed of marking pages dirty, in pages per second. The value is averaged over the last 3 fragments, 0.25 sec each, plus the current fragment, 0–0.25 sec (0.75–1.0 sec total). +| PageReplacements | Number of times a page was replaced (evicted) from the page cache. +| PageCacheHits | Number of times a page was found in the page cache. +| PageCacheMisses | Number of times a page was not found in the page cache and had to be loaded from disk. +| PageCacheHitRate | Page cache hit rate over the last 5 minutes. +| PageAcquireTime | Distribution of page acquisition time in nanoseconds. Review Comment: its probably an accident that this PR includes changes from https://github.com/apache/ignite-3/pull/7397 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
