DomGarguilo commented on code in PR #4572:
URL: https://github.com/apache/accumulo/pull/4572#discussion_r1617750404
##########
server/tserver/src/main/java/org/apache/accumulo/tserver/metrics/TabletServerMetrics.java:
##########
@@ -36,6 +38,13 @@ public TabletServerMetrics(TabletServer tserver) {
@Override
public void registerMetrics(MeterRegistry registry) {
+ FunctionCounter
+ .builder(METRICS_COMPACTOR_ENTRIES_READ, null, o ->
FileCompactor.getTotalEntriesRead())
+ .description("Number of entries read").tag("type",
"tserver").register(registry);
Review Comment:
In 2115782 I added "... by all compactions that have run on this compactor"
or "... by all compactions that have run on this tserver". Let me know what you
think of that.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]