Show / Hide Table of Contents

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.

Inheritance
object
PickTimeSeriesFilter
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX