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

kturner pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
     new 2907c6b614 fixes MetricsIT (#4917)
2907c6b614 is described below

commit 2907c6b6146f40888e05a28274783f6ab8c7b27c
Author: Keith Turner <ktur...@apache.org>
AuthorDate: Sat Sep 21 17:24:19 2024 -0400

    fixes MetricsIT (#4917)
    
    There were metrics defined that nothing produced and the test was
    looking for them.  Removed the definitions.
---
 core/src/main/java/org/apache/accumulo/core/metrics/Metric.java | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/core/src/main/java/org/apache/accumulo/core/metrics/Metric.java 
b/core/src/main/java/org/apache/accumulo/core/metrics/Metric.java
index e131af1205..7252b237ef 100644
--- a/core/src/main/java/org/apache/accumulo/core/metrics/Metric.java
+++ b/core/src/main/java/org/apache/accumulo/core/metrics/Metric.java
@@ -87,12 +87,6 @@ public enum Metric {
   TSERVER_ENTRIES("accumulo.tserver.entries", MetricType.GAUGE, "", 
MetricCategory.TABLET_SERVER),
   TSERVER_MEM_ENTRIES("accumulo.tserver.entries.mem", MetricType.GAUGE, "",
       MetricCategory.TABLET_SERVER),
-  TSERVER_MAJC_RUNNING("accumulo.tserver.majc.running", MetricType.GAUGE, "",
-      MetricCategory.TABLET_SERVER),
-  TSERVER_MAJC_STUCK("accumulo.tserver.majc.stuck", MetricType.GAUGE, "",
-      MetricCategory.TABLET_SERVER),
-  TSERVER_MAJC_QUEUED("accumulo.tserver.majc.queued", MetricType.GAUGE, "",
-      MetricCategory.TABLET_SERVER),
   TSERVER_MINC_QUEUED("accumulo.tserver.minc.queued", MetricType.GAUGE, "",
       MetricCategory.TABLET_SERVER),
   TSERVER_MINC_RUNNING("accumulo.tserver.minc.running", MetricType.GAUGE, "",

Reply via email to