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

jackietien pushed a commit to branch rc/1.3.5
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit cf02934412cfa4582aa6a3d077041d4d11788ffc
Author: Zhenyu Luo <[email protected]>
AuthorDate: Wed Jun 18 15:03:46 2025 +0800

    Pipe: Delete the extra tags created by the PipeWALInsertNodeCacheMetrics 
(#15761) (#15760)
---
 .../iotdb/db/pipe/metric/overview/PipeWALInsertNodeCacheMetrics.java  | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/metric/overview/PipeWALInsertNodeCacheMetrics.java
 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/metric/overview/PipeWALInsertNodeCacheMetrics.java
index 2c4ee76153f..b2e605bf84c 100644
--- 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/metric/overview/PipeWALInsertNodeCacheMetrics.java
+++ 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/metric/overview/PipeWALInsertNodeCacheMetrics.java
@@ -20,7 +20,6 @@
 package org.apache.iotdb.db.pipe.metric.overview;
 
 import org.apache.iotdb.commons.service.metric.enums.Metric;
-import org.apache.iotdb.commons.service.metric.enums.Tag;
 import 
org.apache.iotdb.db.storageengine.dataregion.wal.utils.WALInsertNodeCache;
 import org.apache.iotdb.metrics.AbstractMetricService;
 import org.apache.iotdb.metrics.metricsets.IMetricSet;
@@ -52,8 +51,7 @@ public class PipeWALInsertNodeCacheMetrics implements 
IMetricSet {
         Metric.PIPE_WAL_INSERT_NODE_CACHE_REQUEST_COUNT.toString(),
         MetricLevel.IMPORTANT,
         WALInsertNodeCache.getInstance(),
-        WALInsertNodeCache::getCacheRequestCount,
-        Tag.REGION.toString());
+        WALInsertNodeCache::getCacheRequestCount);
   }
 
   @Override

Reply via email to