Cloud Monitoring V3 API - Class Google::Api::Distribution (v1.5.1)
Stay organized with collections
Save and categorize content based on your preferences.
Reference documentation and code samples for the Cloud Monitoring V3 API class Google::Api::Distribution.
Distribution contains summary statistics for a population of values. It
optionally contains a histogram representing the distribution of those values
across a set of buckets.
The summary statistics are the count, mean, sum of the squared deviation from the mean, the minimum, and the maximum of the set of population of values. The histogram is based on a sequence of buckets and gives a count of values that fall into each bucket. The boundaries of the buckets are given either explicitly or by formulas for buckets of fixed or exponentially increasing widths.
Although it is not forbidden, it is generally a bad idea to include
non-finite values (infinities or NaNs) in the population of values, as this
will render the mean and sum_of_squared_deviation fields meaningless.
Inherits
- Object
Extended By
- Google::Protobuf::MessageExts::ClassMethods
Includes
- Google::Protobuf::MessageExts
Methods
#bucket_counts
defbucket_counts()->::Array<::Integer>-
(::Array<::Integer>) — The number of values in each bucket of the histogram, as described in
bucket_options. If the distribution does not have a histogram, then omit this field. If there is a histogram, then the sum of the values inbucket_countsmust equal the value in thecountfield of the distribution.If present,
bucket_countsshould contain N values, where N is the number of buckets specified inbucket_options. If you supply fewer than N values, the remaining values are assumed to be 0.The order of the values in
bucket_countsfollows the bucket numbering schemes described for the three bucket types. The first value must be the count for the underflow bucket (number 0). The next N-2 values are the counts for the finite buckets (number 1 through N-2). The N'th value inbucket_countsis the count for the overflow bucket (number N-1).
#bucket_counts=
defbucket_counts=(value)->::Array<::Integer>-
value (::Array<::Integer>) — The number of values in each bucket of the histogram, as described in
bucket_options. If the distribution does not have a histogram, then omit this field. If there is a histogram, then the sum of the values inbucket_countsmust equal the value in thecountfield of the distribution.If present,
bucket_countsshould contain N values, where N is the number of buckets specified inbucket_options. If you supply fewer than N values, the remaining values are assumed to be 0.The order of the values in
bucket_countsfollows the bucket numbering schemes described for the three bucket types. The first value must be the count for the underflow bucket (number 0). The next N-2 values are the counts for the finite buckets (number 1 through N-2). The N'th value inbucket_countsis the count for the overflow bucket (number N-1).
-
(::Array<::Integer>) — The number of values in each bucket of the histogram, as described in
bucket_options. If the distribution does not have a histogram, then omit this field. If there is a histogram, then the sum of the values inbucket_countsmust equal the value in thecountfield of the distribution.If present,
bucket_countsshould contain N values, where N is the number of buckets specified inbucket_options. If you supply fewer than N values, the remaining values are assumed to be 0.The order of the values in
bucket_countsfollows the bucket numbering schemes described for the three bucket types. The first value must be the count for the underflow bucket (number 0). The next N-2 values are the counts for the finite buckets (number 1 through N-2). The N'th value inbucket_countsis the count for the overflow bucket (number N-1).
#bucket_options
defbucket_options()->::Google::Api::Distribution::BucketOptions- (::Google::Api::Distribution::BucketOptions) — Defines the histogram bucket boundaries. If the distribution does not contain a histogram, then omit this field.
#bucket_options=
defbucket_options=(value)->::Google::Api::Distribution::BucketOptions- value (::Google::Api::Distribution::BucketOptions) — Defines the histogram bucket boundaries. If the distribution does not contain a histogram, then omit this field.
- (::Google::Api::Distribution::BucketOptions) — Defines the histogram bucket boundaries. If the distribution does not contain a histogram, then omit this field.
#count
defcount()->::Integer-
(::Integer) — The number of values in the population. Must be non-negative. This value
must equal the sum of the values in
bucket_countsif a histogram is provided.
#count=
defcount=(value)->::Integer-
value (::Integer) — The number of values in the population. Must be non-negative. This value
must equal the sum of the values in
bucket_countsif a histogram is provided.
-
(::Integer) — The number of values in the population. Must be non-negative. This value
must equal the sum of the values in
bucket_countsif a histogram is provided.
#exemplars
defexemplars()->::Array<::Google::Api::Distribution::Exemplar>-
(::Array<::Google::Api::Distribution::Exemplar>) — Must be in increasing order of
valuefield.
#exemplars=
defexemplars=(value)->::Array<::Google::Api::Distribution::Exemplar>-
value (::Array<::Google::Api::Distribution::Exemplar>) — Must be in increasing order of
valuefield.
-
(::Array<::Google::Api::Distribution::Exemplar>) — Must be in increasing order of
valuefield.
#mean
defmean()->::Float-
(::Float) — The arithmetic mean of the values in the population. If
countis zero then this field must be zero.
#mean=
defmean=(value)->::Float-
value (::Float) — The arithmetic mean of the values in the population. If
countis zero then this field must be zero.
-
(::Float) — The arithmetic mean of the values in the population. If
countis zero then this field must be zero.
#range
defrange()->::Google::Api::Distribution::Range-
(::Google::Api::Distribution::Range) — If specified, contains the range of the population values. The field
must not be present if the
countis zero.
#range=
defrange=(value)->::Google::Api::Distribution::Range-
value (::Google::Api::Distribution::Range) — If specified, contains the range of the population values. The field
must not be present if the
countis zero.
-
(::Google::Api::Distribution::Range) — If specified, contains the range of the population values. The field
must not be present if the
countis zero.
#sum_of_squared_deviation
defsum_of_squared_deviation()->::Float-
(::Float) — The sum of squared deviations from the mean of the values in the
population. For values x_i this is:
Sum[i=1..n]((x_i - mean)^2)Knuth, "The Art of Computer Programming", Vol. 2, page 232, 3rd edition describes Welford's method for accumulating this sum in one pass.
If
countis zero then this field must be zero.
#sum_of_squared_deviation=
defsum_of_squared_deviation=(value)->::Float-
value (::Float) — The sum of squared deviations from the mean of the values in the
population. For values x_i this is:
Sum[i=1..n]((x_i - mean)^2)Knuth, "The Art of Computer Programming", Vol. 2, page 232, 3rd edition describes Welford's method for accumulating this sum in one pass.
If
countis zero then this field must be zero.
-
(::Float) — The sum of squared deviations from the mean of the values in the
population. For values x_i this is:
Sum[i=1..n]((x_i - mean)^2)Knuth, "The Art of Computer Programming", Vol. 2, page 232, 3rd edition describes Welford's method for accumulating this sum in one pass.
If
countis zero then this field must be zero.