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

rong pushed a commit to branch dev/1.3
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/dev/1.3 by this push:
     new 30fb19425c1 Pipe: Delete the extra tags created by the 
PipeWALInsertNodeCacheMetrics (#15761) (#15760)
30fb19425c1 is described below

commit 30fb19425c1486f44be9698cf2f06e8d4b17650f
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