shenh062326 commented on a change in pull request #1732:
URL: https://github.com/apache/hudi/pull/1732#discussion_r446508116
##########
File path: hudi-client/src/main/java/org/apache/hudi/metrics/HudiGauge.java
##########
@@ -25,22 +25,21 @@
* Similar to {@link Gauge}, but metric value is updated via calling {@link
#setValue(T)} instead.
* </p>
*/
-public class SimpleSettableGauge<T> implements SettableGauge<T> {
+public class HudiGauge<T> implements Gauge<T> {
private volatile T value;
/**
* Create an instance with a default value.
*
* @param defaultValue default value
*/
- public SimpleSettableGauge(T defaultValue) {
+ public HudiGauge(T defaultValue) {
Review comment:
Change to HoodieGauge.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]