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

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


The following commit(s) were added to refs/heads/2.1 by this push:
     new 838cd3d450 Fix the compactor prefix format (#3535)
838cd3d450 is described below

commit 838cd3d450f034eaa71c22bbf6922643e8185213
Author: Daniel Roberts <ddani...@gmail.com>
AuthorDate: Fri Jun 23 15:38:41 2023 -0400

    Fix the compactor prefix format (#3535)
---
 .../src/main/java/org/apache/accumulo/core/metrics/MetricsProducer.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/core/src/main/java/org/apache/accumulo/core/metrics/MetricsProducer.java 
b/core/src/main/java/org/apache/accumulo/core/metrics/MetricsProducer.java
index 876da0635c..6d468812bd 100644
--- a/core/src/main/java/org/apache/accumulo/core/metrics/MetricsProducer.java
+++ b/core/src/main/java/org/apache/accumulo/core/metrics/MetricsProducer.java
@@ -602,7 +602,7 @@ public interface MetricsProducer {
 
   Logger LOG = LoggerFactory.getLogger(MetricsProducer.class);
 
-  String METRICS_COMPACTOR_PREFIX = "accumulo.compactor";
+  String METRICS_COMPACTOR_PREFIX = "accumulo.compactor.";
   String METRICS_COMPACTOR_MAJC_STUCK = METRICS_COMPACTOR_PREFIX + 
"majc.stuck";
 
   String METRICS_FATE_PREFIX = "accumulo.fate.";

Reply via email to