Package

kamon

metric

Permalink

package metric

Visibility
  1. Public
  2. All

Type Members

  1. class AtomicLongGauge extends Gauge

    Permalink
  2. class AtomicLongMaxUpdater extends AnyRef

    Permalink
  3. trait Bucket extends AnyRef

    Permalink
  4. trait Counter extends AnyRef

    Permalink
  5. trait CounterMetric extends Metric[Counter] with Counter

    Permalink
  6. trait Distribution extends AnyRef

    Permalink
  7. class DistributionAccumulator extends AnyRef

    Permalink
  8. case class DynamicRange(lowestDiscernibleValue: Long, highestTrackableValue: Long, significantValueDigits: Int) extends Product with Serializable

    Permalink
  9. trait Gauge extends AnyRef

    Permalink
  10. trait GaugeMetric extends Metric[Gauge] with Gauge

    Permalink
  11. trait Histogram extends AnyRef

    Permalink
  12. trait HistogramMetric extends Metric[Histogram] with Histogram

    Permalink
  13. class LongAdderCounter extends Counter

    Permalink
  14. case class MeasurementUnit(dimension: Dimension, magnitude: Magnitude) extends Product with Serializable

    Permalink

    A MeasurementUnit is a simple representation of the dimension and magnitude of a quantity being measured, such as "Time in Seconds" or "Data in Kilobytes".

    A MeasurementUnit is a simple representation of the dimension and magnitude of a quantity being measured, such as "Time in Seconds" or "Data in Kilobytes". The main use of these units is done by the metric instruments; when a instrument has a specified MeasurementUnit the reporters can apply scaling in case it's necessary to meet the backend's requirements.

  15. trait Metric[T] extends AnyRef

    Permalink
  16. case class MetricDistribution(name: String, tags: Tags, unit: MeasurementUnit, dynamicRange: DynamicRange, distribution: Distribution) extends Product with Serializable

    Permalink

    Snapshot for instruments that internally the distribution of values in a defined dynamic range.

    Snapshot for instruments that internally the distribution of values in a defined dynamic range. Meant to be used with histograms and min max counters.

  17. trait MetricLookup extends AnyRef

    Permalink
  18. class MetricRegistry extends MetricsSnapshotGenerator

    Permalink
  19. case class MetricValue(name: String, tags: Tags, unit: MeasurementUnit, value: Long) extends Product with Serializable

    Permalink

    Snapshot for instruments that internally track a single value.

    Snapshot for instruments that internally track a single value. Meant to be used for counters and gauges.

  20. case class MetricsSnapshot(histograms: Seq[MetricDistribution], rangeSamplers: Seq[MetricDistribution], gauges: Seq[MetricValue], counters: Seq[MetricValue]) extends Product with Serializable

    Permalink
  21. trait MetricsSnapshotGenerator extends AnyRef

    Permalink
  22. trait Percentile extends AnyRef

    Permalink
  23. case class PeriodSnapshot(from: Instant, to: Instant, metrics: MetricsSnapshot) extends Product with Serializable

    Permalink

    Contains immutable snapshots of all metrics recorded since from and until to.

  24. class PeriodSnapshotAccumulator extends AnyRef

    Permalink

    Merges snapshots over the specified duration and produces a snapshot with all merged metrics provided to it within the period.

    Merges snapshots over the specified duration and produces a snapshot with all merged metrics provided to it within the period. This class is mutable, not thread safe and assumes that all snapshots passed to the accumulate(...) function are ordered in time.

    The typical use of this class would be when writing metric reporters that have to report data at a specific interval and wants to protect from users configuring a more frequent metrics tick interval. Example:

    class Reporter extends MetricsReporter {
      val accumulator = new PeriodSnapshotAccumulator(Duration.ofSeconds(60), Duration.ofSeconds(1))
    
      def reportPeriodSnapshot(snapshot: PeriodSnapshot): Unit = {
        accumulator.add(snapshot).foreach(accumulatedSnapshot => {
          // Process your snapshot here, will only be called when the expected period has passed.
        }
      }
    
      ...
    }

    The margin time is used to determine how close the current accumulated interval can to be to the expected interval and still get reported. In the example above a accumulated period of 59.6 seconds has a margin to 60 seconds of 0.4 seconds, thus, getting reported immediately instead of waiting for the next snapshot.

    A detail of what has been accumulated by calling the .peek() function.

  25. trait RangeSampler extends AnyRef

    Permalink
  26. trait RangeSamplerMetric extends Metric[RangeSampler] with RangeSampler

    Permalink
  27. class Scaler extends AnyRef

    Permalink
  28. class SimpleRangeSampler extends RangeSampler

    Permalink
  29. trait StartedTimer extends AnyRef

    Permalink
  30. trait Timer extends Histogram

    Permalink
  31. trait TimerMetric extends Metric[Timer] with Timer

    Permalink

Value Members

  1. object AtomicHdrHistogram extends Serializable

    Permalink
  2. object AtomicLongMaxUpdater

    Permalink
  3. object DynamicRange extends Serializable

    Permalink
  4. object InstrumentFactory

    Permalink
  5. object LongAdderCounter

    Permalink
  6. object MeasurementUnit extends Serializable

    Permalink
  7. object PeriodSnapshotAccumulator

    Permalink
  8. object StartedTimer

    Permalink

Ungrouped