object Distribution extends GeneratedMessageCompanion[Distribution] with Serializable

Linear Supertypes
Serializable, Serializable, GeneratedMessageCompanion[Distribution], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Distribution
  2. Serializable
  3. Serializable
  4. GeneratedMessageCompanion
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class BucketOptions(options: Options = ..., unknownFields: UnknownFieldSet = ...) extends GeneratedMessage with Updatable[BucketOptions] with Product with Serializable

    BucketOptions describes the bucket boundaries used to create a histogram for the distribution.

    BucketOptions describes the bucket boundaries used to create a histogram for the distribution. The buckets can be in a linear sequence, an exponential sequence, or each bucket can be specified explicitly. BucketOptions does not include the number of values in each bucket.

    A bucket has an inclusive lower bound and exclusive upper bound for the values that are counted for that bucket. The upper bound of a bucket must be strictly greater than the lower bound. The sequence of N buckets for a distribution consists of an underflow bucket (number 0), zero or more finite buckets (number 1 through N - 2) and an overflow bucket (number N - 1). The buckets are contiguous: the lower bound of bucket i (i > 0) is the same as the upper bound of bucket i - 1. The buckets span the whole range of finite values: lower bound of the underflow bucket is -infinity and the upper bound of the overflow bucket is +infinity. The finite buckets are so-called because both bounds are finite.

    Annotations
    @SerialVersionUID()
  2. implicit class DistributionLens[UpperPB] extends ObjectLens[UpperPB, Distribution]
  3. final case class Exemplar(value: Double = 0.0, timestamp: Option[Timestamp] = _root_.scala.None, attachments: Seq[Any] = _root_.scala.Seq.empty, unknownFields: UnknownFieldSet = ...) extends GeneratedMessage with Updatable[Exemplar] with Product with Serializable

    Exemplars are example points that may be used to annotate aggregated distribution values.

    Exemplars are example points that may be used to annotate aggregated distribution values. They are metadata that gives information about a particular value added to a Distribution bucket, such as a trace ID that was active when a value was added. They may contain further information, such as a example values and timestamps, origin, etc.

    value

    Value of the exemplar point. This value determines to which bucket the exemplar belongs.

    timestamp

    The observation (sampling) time of the above value.

    attachments

    Contextual information about the example value. Examples are: Trace: type.googleapis.com/google.monitoring.v3.SpanContext Literal string: type.googleapis.com/google.protobuf.StringValue Labels dropped during aggregation: type.googleapis.com/google.monitoring.v3.DroppedLabels There may be only a single attachment of any given message type in a single exemplar, and this is enforced by the system.

    Annotations
    @SerialVersionUID()
  4. final case class Range(min: Double = 0.0, max: Double = 0.0, unknownFields: UnknownFieldSet = ...) extends GeneratedMessage with Updatable[Range] with Product with Serializable

    The range of the population values.

    The range of the population values.

    min

    The minimum of the population values.

    max

    The maximum of the population values.

    Annotations
    @SerialVersionUID()
  5. type ValueType = Distribution
    Definition Classes
    GeneratedMessageCompanion

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final val BUCKET_COUNTS_FIELD_NUMBER: Int(7)
  5. final val BUCKET_OPTIONS_FIELD_NUMBER: Int(6)
  6. final val COUNT_FIELD_NUMBER: Int(1)
  7. final val EXEMPLARS_FIELD_NUMBER: Int(10)
  8. final val MEAN_FIELD_NUMBER: Int(2)
  9. final val RANGE_FIELD_NUMBER: Int(4)
  10. final val SUM_OF_SQUARED_DEVIATION_FIELD_NUMBER: Int(3)
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  13. lazy val defaultInstance: Distribution
    Definition Classes
    Distribution → GeneratedMessageCompanion
  14. def enumCompanionForField(field: FieldDescriptor): GeneratedEnumCompanion[_]
    Definition Classes
    GeneratedMessageCompanion
  15. def enumCompanionForFieldNumber(__fieldNumber: Int): GeneratedEnumCompanion[_]
    Definition Classes
    Distribution → GeneratedMessageCompanion
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def fromAscii(s: String): Distribution
    Definition Classes
    GeneratedMessageCompanion
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def javaDescriptor: Descriptor
    Definition Classes
    Distribution → GeneratedMessageCompanion
  24. def merge(_message__: Distribution, _input__: CodedInputStream): Distribution
    Definition Classes
    Distribution → GeneratedMessageCompanion
  25. implicit def messageCompanion: GeneratedMessageCompanion[Distribution]
  26. def messageCompanionForField(field: FieldDescriptor): GeneratedMessageCompanion[_]
    Definition Classes
    GeneratedMessageCompanion
  27. def messageCompanionForFieldNumber(__number: Int): GeneratedMessageCompanion[_]
    Definition Classes
    Distribution → GeneratedMessageCompanion
  28. implicit def messageReads: Reads[Distribution]
    Definition Classes
    Distribution → GeneratedMessageCompanion
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. lazy val nestedMessagesCompanions: Seq[GeneratedMessageCompanion[_ <: GeneratedMessage]]
    Definition Classes
    Distribution → GeneratedMessageCompanion
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. def of(count: Long, mean: Double, sumOfSquaredDeviation: Double, range: Option[Range], bucketOptions: Option[BucketOptions], bucketCounts: Seq[Long], exemplars: Seq[Exemplar]): Distribution
  34. def parseDelimitedFrom(input: InputStream): Option[Distribution]
    Definition Classes
    GeneratedMessageCompanion
  35. def parseDelimitedFrom(input: CodedInputStream): Option[Distribution]
    Definition Classes
    GeneratedMessageCompanion
  36. def parseFrom(s: Array[Byte]): Distribution
    Definition Classes
    GeneratedMessageCompanion
  37. def parseFrom(input: InputStream): Distribution
    Definition Classes
    GeneratedMessageCompanion
  38. def parseFrom(input: CodedInputStream): Distribution
    Definition Classes
    GeneratedMessageCompanion
  39. def scalaDescriptor: Descriptor
    Definition Classes
    Distribution → GeneratedMessageCompanion
  40. def streamFromDelimitedInput(input: InputStream): Stream[Distribution]
    Definition Classes
    GeneratedMessageCompanion
  41. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  42. def toByteArray(a: Distribution): Array[Byte]
    Definition Classes
    GeneratedMessageCompanion
  43. def toString(): String
    Definition Classes
    AnyRef → Any
  44. def validate(s: Array[Byte]): Try[Distribution]
    Definition Classes
    GeneratedMessageCompanion
  45. def validateAscii(s: String): Either[TextFormatError, Distribution]
    Definition Classes
    GeneratedMessageCompanion
  46. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  49. object BucketOptions extends GeneratedMessageCompanion[BucketOptions] with Serializable
  50. object Exemplar extends GeneratedMessageCompanion[Exemplar] with Serializable
  51. object Range extends GeneratedMessageCompanion[Range] with Serializable

Inherited from Serializable

Inherited from Serializable

Inherited from GeneratedMessageCompanion[Distribution]

Inherited from AnyRef

Inherited from Any

Ungrouped