PushGaugeWithTimeout

A gauge to which you can push new values. Values are forgotten after some time.

Can only be constructed via MetricBuilder.pushGaugeWithTimeout.

class Object
trait Matchable
class Any

Value members

Concrete methods

def push(newValue: A): Unit

Push a new value.

Push a new value.

Value Params
newValue

the new value. Pushing a null will make reporters ignore this metric immediately (verified for the standard reporters: GraphiteReporter and CollectdReporter).

def value: A

The current value.

The current value.

def value_=(newValue: A): Unit

Alias for push.

Alias for push.