public class TimerGauge extends Object implements org.apache.flink.metrics.Gauge<Long>, org.apache.flink.metrics.View
TimerGauge measures how much time is spent in a given state, with entry into that state
being signaled by markStart(). Measuring is stopped by markEnd(). This class in
particularly takes care of the case, when update() is called when some measurement
started but has not yet finished. For example even if next markEnd() call is expected to
happen in a couple of hours, the returned value will account for this ongoing measurement.| 构造器和说明 |
|---|
TimerGauge() |
TimerGauge(org.apache.flink.util.clock.Clock clock) |
| 限定符和类型 | 方法和说明 |
|---|---|
long |
getAccumulatedCount() |
long |
getCount() |
long |
getMaxSingleMeasurement() |
Long |
getValue() |
boolean |
isMeasuring() |
void |
markEnd() |
void |
markStart() |
void |
update() |
public TimerGauge()
public TimerGauge(org.apache.flink.util.clock.Clock clock)
public void markStart()
public void markEnd()
public void update()
update 在接口中 org.apache.flink.metrics.Viewpublic long getMaxSingleMeasurement()
public long getAccumulatedCount()
@VisibleForTesting public long getCount()
@VisibleForTesting public boolean isMeasuring()
Copyright © 2014–2023 The Apache Software Foundation. All rights reserved.