package stats
- Alphabetic
- Public
- All
Type Members
-
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.
-
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.
-
sealed
trait
Measure extends AnyRef
A measure is something which can be measured in a measurement with a value.
-
sealed abstract
case class
MeasureDouble extends Measure with Product with Serializable
<invalid inheritdoc annotation>
-
sealed abstract
case class
MeasureLong extends Measure with Product with Serializable
<invalid inheritdoc annotation>
-
sealed
trait
Measurement extends AnyRef
A Measurement records a value for the measure.
-
sealed abstract
case class
Tag extends Product with Serializable
A Tag is a key value pair which can be added to a measurement.
-
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
-
object
Count extends Aggregation with Product with Serializable
Calculate count on aggregated Measurements.
- object Distribution extends Serializable
-
object
LastValue extends Aggregation with Product with Serializable
Calculate the last value on aggregated Measurements.
- object Measure
- object Measurement
-
object
Sum extends Aggregation with Product with Serializable
Calculate sum on aggregated Measurements.
- object Tag extends Serializable
- object View extends Serializable