ibessonov commented on code in PR #5392: URL: https://github.com/apache/ignite-3/pull/5392#discussion_r1990679622
########## modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/persistence/PersistentPageMemory.java: ########## @@ -275,6 +283,15 @@ public PersistentPageMemory( this.writeThrottle = null; } + private void initMetrics() { + metricSource.addMetric(new IntGauge( + "CheckpointBufferPagesCount", "Number of pages used in checkpoint buffer.", this::usedCheckpointBufferPages + )); + metricSource.addMetric(new IntGauge( + "CheckpointBufferPagesSize", "Number of used pages in checkpoint buffer.", this::maxCheckpointBufferPages Review Comment: Honestly, I did not check these descriptions. Seems like they say the same thing, I'll improve them -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org