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

ibessonov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new fb25f583414 IGNITE-25784 Expand default metrics list for 
LogPushExporter (#7608)
fb25f583414 is described below

commit fb25f58341475f065519a24c1089c882853f8a95
Author: Ivan Zlenko <[email protected]>
AuthorDate: Tue Feb 17 18:17:57 2026 +0500

    IGNITE-25784 Expand default metrics list for LogPushExporter (#7608)
---
 .../LogPushExporterConfigurationSchema.java            | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git 
a/modules/metrics/src/main/java/org/apache/ignite/internal/metrics/exporters/configuration/LogPushExporterConfigurationSchema.java
 
b/modules/metrics/src/main/java/org/apache/ignite/internal/metrics/exporters/configuration/LogPushExporterConfigurationSchema.java
index 9658de0be15..93a6b2b4f9b 100644
--- 
a/modules/metrics/src/main/java/org/apache/ignite/internal/metrics/exporters/configuration/LogPushExporterConfigurationSchema.java
+++ 
b/modules/metrics/src/main/java/org/apache/ignite/internal/metrics/exporters/configuration/LogPushExporterConfigurationSchema.java
@@ -43,14 +43,20 @@ public class LogPushExporterConfigurationSchema extends 
ExporterConfigurationSch
      */
     @Value(hasDefault = true)
     public String[] enabledMetrics = {
+            "client.handler",
+            "clock.service",
+            "index.builder",
+            "jvm",
             "metastorage",
+            "os",
             "placement-driver",
+            "raft*",
             "resource.vacuum",
-            "jvm",
-            "os",
-            "topology.local",
-            "topology.cluster",
-            "thread.pools.partitions-executor",
-            "thread.pools.sql-executor"
+            "sql.plan.cache",
+            "storage.aipersist",
+            "storage.aipersist.checkpoint",
+            "thread.pools*",
+            "topology*",
+            "transactions"
     };
 }

Reply via email to