This is an automated email from the ASF dual-hosted git repository.

timoninmaxim pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new a7b6d1d0392 IGNITE-26783 PerfStat: Exclude heavy system views from 
report (#12439)
a7b6d1d0392 is described below

commit a7b6d1d039289dec0371c961f9eed7b3141be798
Author: Aleksandr Chesnokov <[email protected]>
AuthorDate: Thu Nov 20 16:26:24 2025 +0300

    IGNITE-26783 PerfStat: Exclude heavy system views from report (#12439)
---
 .../processors/performancestatistics/SystemViewFileWriter.java       | 5 ++++-
 .../performancestatistics/PerformanceStatisticsSystemViewTest.java   | 5 ++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git 
a/modules/core/src/main/java/org/apache/ignite/internal/processors/performancestatistics/SystemViewFileWriter.java
 
b/modules/core/src/main/java/org/apache/ignite/internal/processors/performancestatistics/SystemViewFileWriter.java
index d2db4654ab8..ed9e5291a7b 100644
--- 
a/modules/core/src/main/java/org/apache/ignite/internal/processors/performancestatistics/SystemViewFileWriter.java
+++ 
b/modules/core/src/main/java/org/apache/ignite/internal/processors/performancestatistics/SystemViewFileWriter.java
@@ -100,7 +100,10 @@ class SystemViewFileWriter extends GridWorker {
             "metrics",
             "caches",
             "sql.queries",
-            "nodes");
+            "nodes",
+            "cacheGroupPageLists",
+            "dataRegionPageLists",
+            "partitionStates");
         sysViewPredicate = view -> !ignoredViews.contains(view.name());
 
         doWrite(buf -> {
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/performancestatistics/PerformanceStatisticsSystemViewTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/performancestatistics/PerformanceStatisticsSystemViewTest.java
index 8f1ffcd59d7..1100a6a1c88 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/performancestatistics/PerformanceStatisticsSystemViewTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/performancestatistics/PerformanceStatisticsSystemViewTest.java
@@ -57,7 +57,10 @@ public class PerformanceStatisticsSystemViewTest extends 
AbstractPerformanceStat
         "metrics",
         "caches",
         "sql.queries",
-        "nodes");
+        "nodes",
+        "cacheGroupPageLists",
+        "dataRegionPageLists",
+        "partitionStates");
 
     /** */
     private static final int VALID_VIEWS_CNT = 10;

Reply via email to