class Google::Apis::MonitoringV1::StatisticalTimeSeriesFilter
A filter that ranks streams based on their statistical relation to other streams in a request. Note: This field is deprecated and completely ignored by the API.
Attributes
num_time_series[RW]
How many time series to output. Corresponds to the JSON property `numTimeSeries` @return [Fixnum]
ranking_method[RW]
rankingMethod is applied to a set of time series, and then the produced value for each individual time series is used to compare a given time series to others. These are methods that cannot be applied stream-by-stream, but rather require the full context of a request to evaluate time series. Corresponds to the JSON property `rankingMethod` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/monitoring_v1/classes.rb, line 1084 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_v1/classes.rb, line 1089 def update!(**args) @num_time_series = args[:num_time_series] if args.key?(:num_time_series) @ranking_method = args[:ranking_method] if args.key?(:ranking_method) end