Packages

package stats

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Aggregation extends AnyRef

    Aggregation is the process of combining a certain set of Measurements for a given Measure.

    Aggregation is the process of combining a certain set of Measurements for a given Measure.

    Aggregation currently supports 4 types of basic aggregation:

    • Sum
    • Count
    • Distribution
    • LastValue

    When creating a View, one Aggregation needs to be specified as how to aggregate Measurements.

  2. sealed abstract case class Distribution extends Aggregation with Product with Serializable

    Calculate distribution stats on aggregated Measurements.

    Calculate distribution stats on aggregated Measurements. Distribution includes mean, count, histogram, min, max and sum of squared deviations.

  3. sealed trait Measure extends AnyRef

    A measure is something which can be measured in a measurement with a value.

  4. sealed abstract case class MeasureDouble extends Measure with Product with Serializable

    <invalid inheritdoc annotation>

  5. sealed abstract case class MeasureLong extends Measure with Product with Serializable

    <invalid inheritdoc annotation>

  6. sealed trait Measurement extends AnyRef

    A Measurement records a value for the measure.

  7. sealed abstract case class Tag extends Product with Serializable

    A Tag is a key value pair which can be added to a measurement.

  8. sealed abstract case class View extends Product with Serializable

    A View specifies an aggregation and a set of tag keys.

    A View specifies an aggregation and a set of tag keys. The aggregation will be broken down by the unique set of Measurement values for each measure.

Value Members

  1. object Count extends Aggregation with Product with Serializable

    Calculate count on aggregated Measurements.

  2. object Distribution extends Serializable
  3. object LastValue extends Aggregation with Product with Serializable

    Calculate the last value on aggregated Measurements.

  4. object Measure
  5. object Measurement
  6. object Sum extends Aggregation with Product with Serializable

    Calculate sum on aggregated Measurements.

  7. object Tag extends Serializable
  8. object View extends Serializable

Ungrouped