Class: Google::Apis::MonitoringV1::RatioPart

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

Overview

Describes a query to build the numerator or denominator of a TimeSeriesFilterRatio.

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) ⇒ RatioPart

Returns a new instance of RatioPart.



622
623
624
# File 'generated/google/apis/monitoring_v1/classes.rb', line 622

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

Instance Attribute Details

#aggregationGoogle::Apis::MonitoringV1::Aggregation

Describes how to combine multiple time series to provide a different view of the data. Aggregation of time series is done in two steps. First, each time series in the set is aligned to the same time interval boundaries, then the set of time series is optionally reduced in number.Alignment consists of applying the per_series_aligner operation to each time series after its data has been divided into regular alignment_period time intervals. This process takes all of the data points in an alignment period, applies a mathematical transformation such as averaging, minimum, maximum, delta, etc., and converts them into a single data point per period.Reduction is when the aligned and transformed time series can optionally be combined, reducing the number of time series through similar mathematical transformations. Reduction involves applying a cross_series_reducer to all the time series, optionally sorting the time series into subsets with group_by_fields, and applying the reducer to each subset.The raw time series data can contain a huge amount of information from multiple sources. Alignment and reduction transforms this mass of data into a more manageable and representative collection of data, for example "the 95% latency across the average of all tasks in a cluster". This representative data can be more easily graphed and comprehended, and the individual time series data is still available for later drilldown. For more details, see Aggregating Time Series. Corresponds to the JSON property aggregation



614
615
616
# File 'generated/google/apis/monitoring_v1/classes.rb', line 614

def aggregation
  @aggregation
end

#filterString

Required. The monitoring filter that identifies the metric types, resources, and projects to query. Corresponds to the JSON property filter

Returns:

  • (String)


620
621
622
# File 'generated/google/apis/monitoring_v1/classes.rb', line 620

def filter
  @filter
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



627
628
629
630
# File 'generated/google/apis/monitoring_v1/classes.rb', line 627

def update!(**args)
  @aggregation = args[:aggregation] if args.key?(:aggregation)
  @filter = args[:filter] if args.key?(:filter)
end