From 2eff8dbcfaf553399c527f10eb0c07673eb7cf25 Mon Sep 17 00:00:00 2001 From: Natalia Ivakina Date: Tue, 23 Jan 2024 14:53:44 +0100 Subject: [PATCH] Add new metrics to count page flushed by background evictor --- modules/ROOT/pages/monitoring/metrics/reference.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/ROOT/pages/monitoring/metrics/reference.adoc b/modules/ROOT/pages/monitoring/metrics/reference.adoc index 1d42d10d2..db87fc569 100644 --- a/modules/ROOT/pages/monitoring/metrics/reference.adoc +++ b/modules/ROOT/pages/monitoring/metrics/reference.adoc @@ -212,6 +212,8 @@ By default, database metrics include: |.page_cache.pins|The total number of page pins executed by the page cache. (counter) |.page_cache.evictions|The total number of page evictions executed by the page cache. (counter) |.page_cache.evictions.cooperative|The total number of cooperative page evictions executed by the page cache due to low available pages. (counter) +|.page_cache.eviction.flushes|label:new[Introduced in 5.17]The total number of pages flushed by page eviction. (counter) +|.page_cache.eviction.cooperative.flushes|label:new[Introduced in 5.17]The total number of pages flushed by cooperative page eviction. (counter) |.page_cache.page_faults|The total number of page faults in the page cache. If this count keeps increasing over time, it may indicate that more page cache is required. However, note that when Neo4j Enterprise starts up, all page cache warmup activities result in page faults. Therefore, it is normal to observe a significant page fault count immediately after startup. (counter) |.page_cache.page_fault_failures|The total number of failed page faults happened in the page cache. (counter) |.page_cache.page_cancelled_faults|The total number of cancelled page faults happened in the page cache. (counter)