class Google::Apis::MonitoringV3::TimeSeriesData

Represents the values of a time series associated with a TimeSeriesDescriptor.

Attributes

label_values[RW]

The values of the labels in the time series identifier, given in the same order as the label_descriptors field of the TimeSeriesDescriptor associated with this object. Each value must have a value of the type given in the corresponding entry of label_descriptors. Corresponds to the JSON property `labelValues` @return [Array<Google::Apis::MonitoringV3::LabelValue>]

point_data[RW]

The points in the time series. Corresponds to the JSON property `pointData` @return [Array<Google::Apis::MonitoringV3::PointData>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/monitoring_v3/classes.rb, line 3911
def update!(**args)
  @label_values = args[:label_values] if args.key?(:label_values)
  @point_data = args[:point_data] if args.key?(:point_data)
end