Skip to content

Commit 044f62b

Browse files
authored
IGNITE-27393 PerfStat: Update list of ignored views (#12590)
1 parent c0d37c6 commit 044f62b

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

modules/core/src/main/java/org/apache/ignite/internal/processors/performancestatistics/SystemViewFileWriter.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,10 @@ public SystemViewFileWriter(GridKernalContext ctx) throws IgniteCheckedException
103103
"nodes",
104104
"cacheGroupPageLists",
105105
"dataRegionPageLists",
106-
"partitionStates");
106+
"partitionStates",
107+
"statisticsPartitionData",
108+
"metastorage",
109+
"distributed.metastorage");
107110
sysViewPredicate = view -> !ignoredViews.contains(view.name());
108111

109112
doWrite(buf -> {

modules/core/src/test/java/org/apache/ignite/internal/processors/performancestatistics/PerformanceStatisticsSystemViewTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ public class PerformanceStatisticsSystemViewTest extends AbstractPerformanceStat
6060
"nodes",
6161
"cacheGroupPageLists",
6262
"dataRegionPageLists",
63-
"partitionStates");
63+
"partitionStates",
64+
"statisticsPartitionData",
65+
"metastorage",
66+
"distributed.metastorage");
6467

6568
/** */
6669
private static final int VALID_VIEWS_CNT = 10;

0 commit comments

Comments
 (0)