Jackie-Jiang commented on code in PR #12710: URL: https://github.com/apache/pinot/pull/12710#discussion_r1538368740
########## pinot-common/src/main/java/org/apache/pinot/common/metrics/MinionMeter.java: ########## @@ -31,7 +31,13 @@ public enum MinionMeter implements AbstractMetrics.Meter { NUMBER_TASKS_FAILED("tasks", false), NUMBER_TASKS_FATAL_FAILED("tasks", false), SEGMENT_UPLOAD_FAIL_COUNT("segments", false), - SEGMENT_DOWNLOAD_FAIL_COUNT("segments", false); + SEGMENT_DOWNLOAD_FAIL_COUNT("segments", false), + SEGMENTS_DOWNLOADED("segments", false), Review Comment: Can we try to follow one convention for the metric name? ########## pinot-common/src/main/java/org/apache/pinot/common/metrics/MinionMeter.java: ########## @@ -31,7 +31,13 @@ public enum MinionMeter implements AbstractMetrics.Meter { NUMBER_TASKS_FAILED("tasks", false), NUMBER_TASKS_FATAL_FAILED("tasks", false), SEGMENT_UPLOAD_FAIL_COUNT("segments", false), - SEGMENT_DOWNLOAD_FAIL_COUNT("segments", false); + SEGMENT_DOWNLOAD_FAIL_COUNT("segments", false), + SEGMENTS_DOWNLOADED("segments", false), + SEGMENTS_UPLOADED("segments", false), + SEGMENT_SIZE_DOWNLOADED("bytes", false), + SEGMENT_SIZE_UPLOADED("bytes", false), + RECORDS_PER_SEGMENT("rows", false), Review Comment: What does `per` segment stand for? I don't see we are counting the average -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org