EdColeman commented on code in PR #4572:
URL: https://github.com/apache/accumulo/pull/4572#discussion_r1612411802


##########
server/compactor/src/main/java/org/apache/accumulo/compactor/Compactor.java:
##########
@@ -159,6 +160,15 @@ protected Compactor(CompactorServerOpts opts, String[] 
args) {
 
   @Override
   public void registerMetrics(MeterRegistry registry) {
+
+    // TODO Should the metrics have the same name in both processes?
+    FunctionCounter
+        .builder(METRICS_COMPACTOR_ENTRIES_READ, null, o -> 
FileCompactor.getTotalEntriesRead())
+        .description("Number of entries read").tag("type", 
"compactor").register(registry);

Review Comment:
   I mis-read your comment, I thought you were saying that type should be 
added.  The current common tags (2.1):
   
    - host
    - port
    - process name
    - instance.name



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to