class Google::Apis::ServicecontrolV1::MetricValue

Represents a single metric value.

Attributes

bool_value[RW]

A boolean value. Corresponds to the JSON property `boolValue` @return [Boolean]

bool_value?[RW]

A boolean value. Corresponds to the JSON property `boolValue` @return [Boolean]

distribution_value[RW]

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 Corresponds to the JSON property `distributionValue` @return [Google::Apis::ServicecontrolV1::Distribution]

double_value[RW]

A double precision floating point value. Corresponds to the JSON property `doubleValue` @return [Float]

end_time[RW]

The end of the time period over which this metric value's measurement applies. If not specified, google.api.servicecontrol.v1.Operation.end_time will be used. Corresponds to the JSON property `endTime` @return [String]

int64_value[RW]

A signed 64-bit integer value. Corresponds to the JSON property `int64Value` @return [Fixnum]

labels[RW]

The labels describing the metric value. See comments on google.api. servicecontrol.v1.Operation.labels for the overriding relationship. Note that this map must not contain monitored resource labels. Corresponds to the JSON property `labels` @return [Hash<String,String>]

money_value[RW]

Represents an amount of money with its currency type. Corresponds to the JSON property `moneyValue` @return [Google::Apis::ServicecontrolV1::Money]

start_time[RW]

The start of the time period over which this metric value's measurement applies. The time period has different semantics for different metric types ( cumulative, delta, and gauge). See the metric definition documentation in the service configuration for details. If not specified, google.api.servicecontrol. v1.Operation.start_time will be used. Corresponds to the JSON property `startTime` @return [String]

string_value[RW]

A text string value. Corresponds to the JSON property `stringValue` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/servicecontrol_v1/classes.rb, line 1303
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/servicecontrol_v1/classes.rb, line 1308
def update!(**args)
  @bool_value = args[:bool_value] if args.key?(:bool_value)
  @distribution_value = args[:distribution_value] if args.key?(:distribution_value)
  @double_value = args[:double_value] if args.key?(:double_value)
  @end_time = args[:end_time] if args.key?(:end_time)
  @int64_value = args[:int64_value] if args.key?(:int64_value)
  @labels = args[:labels] if args.key?(:labels)
  @money_value = args[:money_value] if args.key?(:money_value)
  @start_time = args[:start_time] if args.key?(:start_time)
  @string_value = args[:string_value] if args.key?(:string_value)
end