Atomic

class Atomic(val metric: BaseMetric[Timer, ForDistributionInstrument, Distribution], val tags: TagSet, val dynamicRange: DynamicRange, clock: Clock) extends BaseAtomicHdrHistogram with Timer with BaseMetricAutoUpdate[Timer, ForDistributionInstrument, Distribution]

Timer implementation with thread safety guarantees. Instances of this class can be safely shared across threads and updated concurrently. This is, in fact, a close copy of the Histogram.Atomic implementation, modified to match the Timer interface.

trait Timer
trait Tagging[Timer]
class BaseAtomicHdrHistogram
trait HdrHistogramInternalState
class EncodableHistogram
class Object
trait Matchable
class Any

Value members

Concrete methods

override def record(nanos: Long): Timer

Records a value on the underlying histogram, handling the case of overflowing the dynamic range

Records a value on the underlying histogram, handling the case of overflowing the dynamic range

Definition Classes
override def record(duration: Duration): Timer

Records a specified duration, translated to nanoseconds

Records a specified duration, translated to nanoseconds

Definition Classes
override def record(elapsed: Long, unit: TimeUnit): Timer

Records an elapsed time expressed on the provided time unit

Records an elapsed time expressed on the provided time unit

Definition Classes
override def start(): Started

Starts a timer that will record the elapsed time between the start and stop instants

Starts a timer that will record the elapsed time between the start and stop instants

Definition Classes

Inherited methods

def autoUpdate(consumer: Timer => Unit, interval: Duration): Inst
Inherited from:
BaseMetricAutoUpdate
def autoUpdate(consumer: Timer => Unit): Inst

Schedules a call to the provided consumer with a reference to this histogram as parameter. The schedule uses the default auto-update interval. See the kamon.metric.instrument-factory configuration settings for more details.

Schedules a call to the provided consumer with a reference to this histogram as parameter. The schedule uses the default auto-update interval. See the kamon.metric.instrument-factory configuration settings for more details.

Inherited from:
Instrument
def autoUpdate(consumer: Consumer[Timer], interval: Duration): Inst

Schedules a call to the provided consumer with a reference to this histogram as parameter, overriding the metric's auto-update interval.

Schedules a call to the provided consumer with a reference to this histogram as parameter, overriding the metric's auto-update interval.

Inherited from:
Instrument
def autoUpdate(consumer: Consumer[Timer]): Inst

Schedules a call to the provided consumer with a reference to this histogram as parameter. The schedule uses the default auto-update interval. See the kamon.metric.instrument-factory configuration settings for more details.

Schedules a call to the provided consumer with a reference to this histogram as parameter. The schedule uses the default auto-update interval. See the kamon.metric.instrument-factory configuration settings for more details.

Inherited from:
Instrument
def defaultSchedule(): Unit
Inherited from:
BaseMetricAutoUpdate
def encodeIntoCompressedByteBuffer(x$0: ByteBuffer, x$1: Int): Int
Inherited from:
BaseAtomicHdrHistogram
def getAndSetFromCountsArray(x$0: Int, x$1: Long): Long
Inherited from:
BaseAtomicHdrHistogram
Inherited from:
BaseAtomicHdrHistogram
def getEndTimeStamp(): Long
Inherited from:
BaseAtomicHdrHistogram
def getFromCountsArray(x$0: Int): Long
Inherited from:
BaseAtomicHdrHistogram
Inherited from:
BaseAtomicHdrHistogram
def getMaxValueAsDouble(): Double
Inherited from:
BaseAtomicHdrHistogram
Inherited from:
BaseAtomicHdrHistogram
def getStartTimeStamp(): Long
Inherited from:
BaseAtomicHdrHistogram
Inherited from:
BaseAtomicHdrHistogram
Inherited from:
BaseAtomicHdrHistogram
def getTag(): String
Inherited from:
BaseAtomicHdrHistogram
def getUnitMagnitude(): Int
Inherited from:
BaseAtomicHdrHistogram
def recordValue(x$0: Long): Unit
Inherited from:
BaseAtomicHdrHistogram
def recordValueWithCount(x$0: Long, x$1: Long): Unit
Inherited from:
BaseAtomicHdrHistogram
def remove(): Boolean

Removes this instrument from the metric.

Removes this instrument from the metric.

Inherited from:
Instrument
def reset(): Unit
Inherited from:
BaseAtomicHdrHistogram
def setEndTimeStamp(x$0: Long): Unit
Inherited from:
BaseAtomicHdrHistogram
def setStartTimeStamp(x$0: Long): Unit
Inherited from:
BaseAtomicHdrHistogram
def setTag(x$0: String): Unit
Inherited from:
BaseAtomicHdrHistogram
def snapshot(resetState: Boolean): Distribution

Creates a snapshot for an instrument. If the resetState flag is set to true, the internal state of the instrument will be reset, if applicable.

Creates a snapshot for an instrument. If the resetState flag is set to true, the internal state of the instrument will be reset, if applicable.

Inherited from:
DistributionSnapshotBuilder (hidden)
override def withTag(key: String, value: Long): Inst

Returns an instrument with one additional tag defined by the provided key and value pair.

Returns an instrument with one additional tag defined by the provided key and value pair.

Definition Classes
Inherited from:
Instrument
override def withTag(key: String, value: Boolean): Inst

Returns an instrument with one additional tag defined by the provided key and value pair.

Returns an instrument with one additional tag defined by the provided key and value pair.

Definition Classes
Inherited from:
Instrument
override def withTag(key: String, value: String): Inst

Returns an instrument with one additional tag defined by the provided key and value pair.

Returns an instrument with one additional tag defined by the provided key and value pair.

Definition Classes
Inherited from:
Instrument
override def withTags(tags: TagSet): Inst

Returns an instrument with additional tags from the provided TagSet.

Returns an instrument with additional tags from the provided TagSet.

Definition Classes
Inherited from:
Instrument

Concrete fields

Returns the metric to which this instrument belongs.

Returns the metric to which this instrument belongs.

Returns the tags used to create this instrument.

Returns the tags used to create this instrument.