Class: Google::Apis::ServicecontrolV1::Distribution

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/servicecontrol_v1/classes.rb,
generated/google/apis/servicecontrol_v1/representations.rb,
generated/google/apis/servicecontrol_v1/representations.rb

Overview

Distribution represents a frequency distribution of double-valued sample points. It contains the size of the population of sample points plus additional optional information:

  • the arithmetic mean of the samples
  • the minimum and maximum of the samples
  • the sum-squared-deviation of the samples, used to compute variance
  • a histogram of the values of the sample points

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Distribution

Returns a new instance of Distribution



1625
1626
1627
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1625

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bucket_countsArray<Fixnum>

The number of samples in each histogram bucket. bucket_counts are optional. If present, they must sum to the count value. The buckets are defined below in bucket_option. There are N buckets. bucket_counts[0] is the number of samples in the underflow bucket. bucket_counts[1] to bucket_counts[N-1] are the numbers of samples in each of the finite buckets. And bucket_counts[N] is the number of samples in the overflow bucket. See the comments ofbucket_option below for more details. Any suffix of trailing zeros may be omitted. Corresponds to the JSON propertybucketCounts`

Returns:

  • (Array<Fixnum>)


1618
1619
1620
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1618

def bucket_counts
  @bucket_counts
end

#countFixnum

The total number of samples in the distribution. Must be >= 0. Corresponds to the JSON property count

Returns:

  • (Fixnum)


1599
1600
1601
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1599

def count
  @count
end

#explicit_bucketsGoogle::Apis::ServicecontrolV1::ExplicitBuckets

Describing buckets with arbitrary user-provided width. Corresponds to the JSON property explicitBuckets



1623
1624
1625
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1623

def explicit_buckets
  @explicit_buckets
end

#exponential_bucketsGoogle::Apis::ServicecontrolV1::ExponentialBuckets

Describing buckets with exponentially growing width. Corresponds to the JSON property exponentialBuckets



1584
1585
1586
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1584

def exponential_buckets
  @exponential_buckets
end

#linear_bucketsGoogle::Apis::ServicecontrolV1::LinearBuckets

Describing buckets with constant width. Corresponds to the JSON property linearBuckets



1594
1595
1596
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1594

def linear_buckets
  @linear_buckets
end

#maximumFloat

The maximum of the population of values. Ignored if count is zero. Corresponds to the JSON property maximum

Returns:

  • (Float)


1571
1572
1573
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1571

def maximum
  @maximum
end

#meanFloat

The arithmetic mean of the samples in the distribution. If count is zero then this field must be zero. Corresponds to the JSON property mean

Returns:

  • (Float)


1605
1606
1607
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1605

def mean
  @mean
end

#minimumFloat

The minimum of the population of values. Ignored if count is zero. Corresponds to the JSON property minimum

Returns:

  • (Float)


1589
1590
1591
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1589

def minimum
  @minimum
end

#sum_of_squared_deviationFloat

The sum of squared deviations from the mean: Sumi=1..count where each x_i is a sample values. If count is zero then this field must be zero, otherwise validation of the request fails. Corresponds to the JSON property sumOfSquaredDeviation

Returns:

  • (Float)


1579
1580
1581
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1579

def sum_of_squared_deviation
  @sum_of_squared_deviation
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1630

def update!(**args)
  @maximum = args[:maximum] if args.key?(:maximum)
  @sum_of_squared_deviation = args[:sum_of_squared_deviation] if args.key?(:sum_of_squared_deviation)
  @exponential_buckets = args[:exponential_buckets] if args.key?(:exponential_buckets)
  @minimum = args[:minimum] if args.key?(:minimum)
  @linear_buckets = args[:linear_buckets] if args.key?(:linear_buckets)
  @count = args[:count] if args.key?(:count)
  @mean = args[:mean] if args.key?(:mean)
  @bucket_counts = args[:bucket_counts] if args.key?(:bucket_counts)
  @explicit_buckets = args[:explicit_buckets] if args.key?(:explicit_buckets)
end