mumrah commented on code in PR #13407:
URL: https://github.com/apache/kafka/pull/13407#discussion_r1165588383
##########
metadata/src/main/java/org/apache/kafka/controller/metrics/ControllerMetadataMetrics.java:
##########
@@ -108,6 +112,12 @@ public Integer value() {
return metadataErrorCount();
}
}));
+ registry.ifPresent(r -> r.newGauge(ZK_MIGRATION_STATE, new
Gauge<Integer>() {
+ @Override
+ public Integer value() {
+ return (int) zkMigrationState();
Review Comment:
Only for the primitives. Since the gauge uses boxed Integer, it will only
auto-box the same typed primitive
--
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]