michaeljmarshall commented on code in PR #20001:
URL: https://github.com/apache/pulsar/pull/20001#discussion_r1160723377
##########
pulsar-broker/src/main/java/org/apache/pulsar/broker/stats/metrics/ManagedLedgerMetrics.java:
##########
@@ -108,6 +108,8 @@ private List<Metrics> aggregate(Map<Metrics,
List<ManagedLedgerImpl>> ledgersByD
(double) lStats.getReadEntriesErrors());
populateAggregationMapWithSum(tempAggregatedMetricsMap,
"brk_ml_ReadEntriesRate",
lStats.getReadEntriesRate());
+ populateAggregationMapWithSum(tempAggregatedMetricsMap,
"brk_ml_ReadEntriesOpsCacheMissesRate",
+ lStats.getReadEntriesOpsCacheMissesRate());
Review Comment:
Why didn't this go with the other cache metrics?
https://github.com/apache/pulsar/blob/82237d3684fe506bcb6426b3b23f413422e6e4fb/pulsar-broker/src/main/java/org/apache/pulsar/broker/stats/metrics/ManagedLedgerCacheMetrics.java#L49-L58
--
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]