package metrics
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
final
case class
Bucket(cumulativeCount: Option[Long] = None, upperBound: Option[Double] = None) extends GeneratedMessage with Message[Bucket] with Updatable[Bucket] with Product with Serializable
- cumulativeCount
Cumulative in increasing order.
- upperBound
Inclusive.
- Annotations
- @SerialVersionUID()
-
final
case class
Counter(value: Option[Double] = None) extends GeneratedMessage with Message[Counter] with Updatable[Counter] with Product with Serializable
- Annotations
- @SerialVersionUID()
-
final
case class
Gauge(value: Option[Double] = None) extends GeneratedMessage with Message[Gauge] with Updatable[Gauge] with Product with Serializable
- Annotations
- @SerialVersionUID()
-
final
case class
Histogram(sampleCount: Option[Long] = None, sampleSum: Option[Double] = None, bucket: Seq[Bucket] = _root_.scala.collection.Seq.empty) extends GeneratedMessage with Message[Histogram] with Updatable[Histogram] with Product with Serializable
- bucket
Ordered in increasing order of upper_bound, +Inf bucket is optional.
- Annotations
- @SerialVersionUID()
-
final
case class
LabelPair(name: Option[String] = None, value: Option[String] = None) extends GeneratedMessage with Message[LabelPair] with Updatable[LabelPair] with Product with Serializable
- Annotations
- @SerialVersionUID()
-
final
case class
Metric(label: Seq[LabelPair] = _root_.scala.collection.Seq.empty, gauge: Option[Gauge] = None, counter: Option[Counter] = None, summary: Option[Summary] = None, untyped: Option[Untyped] = None, histogram: Option[Histogram] = None, timestampMs: Option[Long] = None) extends GeneratedMessage with Message[Metric] with Updatable[Metric] with Product with Serializable
- Annotations
- @SerialVersionUID()
-
final
case class
MetricFamily(name: Option[String] = None, help: Option[String] = None, type: Option[MetricType] = None, metric: Seq[Metric] = _root_.scala.collection.Seq.empty) extends GeneratedMessage with Message[MetricFamily] with Updatable[MetricFamily] with Product with Serializable
- Annotations
- @SerialVersionUID()
- sealed trait MetricType extends GeneratedEnum
-
final
case class
Quantile(quantile: Option[Double] = None, value: Option[Double] = None) extends GeneratedMessage with Message[Quantile] with Updatable[Quantile] with Product with Serializable
- Annotations
- @SerialVersionUID()
-
final
case class
Summary(sampleCount: Option[Long] = None, sampleSum: Option[Double] = None, quantile: Seq[Quantile] = _root_.scala.collection.Seq.empty) extends GeneratedMessage with Message[Summary] with Updatable[Summary] with Product with Serializable
- Annotations
- @SerialVersionUID()
-
final
case class
Untyped(value: Option[Double] = None) extends GeneratedMessage with Message[Untyped] with Updatable[Untyped] with Product with Serializable
- Annotations
- @SerialVersionUID()
Value Members
- object Bucket extends GeneratedMessageCompanion[Bucket] with Serializable
- object Counter extends GeneratedMessageCompanion[Counter] with Serializable
- object Gauge extends GeneratedMessageCompanion[Gauge] with Serializable
- object Histogram extends GeneratedMessageCompanion[Histogram] with Serializable
- object LabelPair extends GeneratedMessageCompanion[LabelPair] with Serializable
- object Metric extends GeneratedMessageCompanion[Metric] with Serializable
- object MetricFamily extends GeneratedMessageCompanion[MetricFamily] with Serializable
- object MetricType extends GeneratedEnumCompanion[MetricType] with Serializable
- object MetricsProto extends GeneratedFileObject
- object Quantile extends GeneratedMessageCompanion[Quantile] with Serializable
- object Summary extends GeneratedMessageCompanion[Summary] with Serializable
- object Untyped extends GeneratedMessageCompanion[Untyped] with Serializable