class Google::Apis::MonitoringV3::ListTimeSeriesResponse
The ListTimeSeries response.
Attributes
Query execution errors that may have caused the time series data returned to be incomplete. Corresponds to the JSON property `executionErrors` @return [Array<Google::Apis::MonitoringV3::Status>]
If there are more results than have been returned, then this field is set to a non-empty value. To see the additional results, use that value as page_token in the next call to this method. Corresponds to the JSON property `nextPageToken` @return [String]
One or more time series that match the filter included in the request. Corresponds to the JSON property `timeSeries` @return [Array<Google::Apis::MonitoringV3::TimeSeries>]
The unit in which all time_series
point values are reported. unit follows the UCUM format for units as seen in unitsofmeasure.org/ucum.html. If different time_series
have different units (for example, because they come from different metric types, or a unit is absent), then unit will be “` not_a_unit`”. Corresponds to the JSON property `unit` @return [String]
Public Class Methods
# File lib/google/apis/monitoring_v3/classes.rb, line 2348 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/monitoring_v3/classes.rb, line 2353 def update!(**args) @execution_errors = args[:execution_errors] if args.key?(:execution_errors) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @time_series = args[:time_series] if args.key?(:time_series) @unit = args[:unit] if args.key?(:unit) end