Show / Hide Table of Contents

Class MonitoringQueryLanguageCondition

A condition type that allows alerting policies to be defined using Monitoring Query Language (https://cloud.google.com/monitoring/mql).

Inheritance
object
MonitoringQueryLanguageCondition
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.v3.Data
Assembly: Google.Apis.Monitoring.v3.dll
Syntax
public class MonitoringQueryLanguageCondition : IDirectResponseSchema

Properties

Duration

The amount of time that a time series must violate the threshold to be considered failing. Currently, only values that are a multiple of a minute--e.g., 0, 60, 120, or 300 seconds--are supported. If an invalid value is given, an error will be returned. When choosing a duration, it is useful to keep in mind the frequency of the underlying time series data (which may also be affected by any alignments specified in the aggregations field); a good duration is long enough so that a single outlier does not generate spurious alerts, but short enough that unhealthy states are detected and alerted on quickly.

Declaration
[JsonProperty("duration")]
public virtual object Duration { get; set; }
Property Value
Type Description
object

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

EvaluationMissingData

A condition control that determines how metric-threshold conditions are evaluated when data stops arriving.

Declaration
[JsonProperty("evaluationMissingData")]
public virtual string EvaluationMissingData { get; set; }
Property Value
Type Description
string

Query

Monitoring Query Language (https://cloud.google.com/monitoring/mql) query that outputs a boolean stream.

Declaration
[JsonProperty("query")]
public virtual string Query { get; set; }
Property Value
Type Description
string

Trigger

The number/percent of time series for which the comparison must hold in order for the condition to trigger. If unspecified, then the condition will trigger if the comparison is true for any of the time series that have been identified by filter and aggregations, or by the ratio, if denominator_filter and denominator_aggregations are specified.

Declaration
[JsonProperty("trigger")]
public virtual Trigger Trigger { get; set; }
Property Value
Type Description
Trigger

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX