milleruntime commented on a change in pull request #2305:
URL: https://github.com/apache/accumulo/pull/2305#discussion_r729755333



##########
File path: server/monitor/src/main/java/org/apache/accumulo/monitor/Monitor.java
##########
@@ -287,11 +314,11 @@ public void fetchData() {
 
         for (TabletServerStatus server : mmi.tServerInfo) {
           TableInfo summary = TableInfoUtil.summarizeTableStats(server);
-          totalIngestRate += summary.ingestRate;
-          totalIngestByteRate += summary.ingestByteRate;
-          totalQueryRate += summary.queryRate;
-          totalScanRate += summary.scanRate;
-          totalQueryByteRate += summary.queryByteRate;
+          totalIngest += summary.ingest;
+          totalIngestBytes += summary.ingestBytes;
+          totalQuery += summary.query;
+          totalScan += summary.scan;
+          totalQueryBytes += summary.queryBytes;

Review comment:
       If the rates are calculated here, would we have to make any other 
changes to the Monitor?




-- 
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]


Reply via email to