Class PickTimeSeriesFilter
Describes a ranking-based time series filter. Each input time series is ranked with an aligner. The filter will allow up to num_time_series time series to pass through it, selecting them based on the relative ranking.For example, if ranking_method is METHOD_MEAN,direction is BOTTOM, and num_time_series is 3, then the 3 times series with the lowest mean values will pass through the filter.
Implements
Inherited Members
Namespace: Google.Apis.Monitoring.v1.Data
Assembly: Google.Apis.Monitoring.v1.dll
Syntax
public class PickTimeSeriesFilter : IDirectResponseSchema
Properties
Direction
How to use the ranking to select time series that pass through the filter.
Declaration
[JsonProperty("direction")]
public virtual string Direction { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Interval
Select the top N streams/time series within this time interval
Declaration
[JsonProperty("interval")]
public virtual Interval Interval { get; set; }
Property Value
Type | Description |
---|---|
Interval |
NumTimeSeries
How many time series to allow to pass through the filter.
Declaration
[JsonProperty("numTimeSeries")]
public virtual int? NumTimeSeries { get; set; }
Property Value
Type | Description |
---|---|
int? |
RankingMethod
ranking_method is applied to each time series independently to produce the value which will be used to compare the time series to other time series.
Declaration
[JsonProperty("rankingMethod")]
public virtual string RankingMethod { get; set; }
Property Value
Type | Description |
---|---|
string |