Google Cloud Monitoring v3 API - Class AlertPolicy.Types.Condition.Types.PrometheusQueryLanguageCondition (3.8.0)

public sealed class AlertPolicy.Types.Condition.Types.PrometheusQueryLanguageCondition : IMessage<AlertPolicy.Types.Condition.Types.PrometheusQueryLanguageCondition>, IEquatable<AlertPolicy.Types.Condition.Types.PrometheusQueryLanguageCondition>, IDeepCloneable<AlertPolicy.Types.Condition.Types.PrometheusQueryLanguageCondition>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Monitoring v3 API class AlertPolicy.Types.Condition.Types.PrometheusQueryLanguageCondition.

A condition type that allows alert policies to be defined using Prometheus Query Language (PromQL).

The PrometheusQueryLanguageCondition message contains information from a Prometheus alerting rule and its associated rule group.

A Prometheus alerting rule is described here. The semantics of a Prometheus alerting rule is described here.

A Prometheus rule group is described here. The semantics of a Prometheus rule group is described here.

Because Cloud Alerting has no representation of a Prometheus rule group resource, we must embed the information of the parent rule group inside each of the conditions that refer to it. We must also update the contents of all Prometheus alerts in case the information of their rule group changes.

The PrometheusQueryLanguageCondition protocol buffer combines the information of the corresponding rule group and alerting rule. The structure of the PrometheusQueryLanguageCondition protocol buffer does NOT mimic the structure of the Prometheus rule group and alerting rule YAML declarations. The PrometheusQueryLanguageCondition protocol buffer may change in the future to support future rule group and/or alerting rule features. There are no new such features at the present time (2023-06-26).

Inheritance

object > AlertPolicy.Types.Condition.Types.PrometheusQueryLanguageCondition

Namespace

Google.Cloud.Monitoring.V3

Assembly

Google.Cloud.Monitoring.V3.dll

Constructors

PrometheusQueryLanguageCondition()

public PrometheusQueryLanguageCondition()

PrometheusQueryLanguageCondition(PrometheusQueryLanguageCondition)

public PrometheusQueryLanguageCondition(AlertPolicy.Types.Condition.Types.PrometheusQueryLanguageCondition other)
Parameter
NameDescription
otherAlertPolicyTypesConditionTypesPrometheusQueryLanguageCondition

Properties

AlertRule

public string AlertRule { get; set; }

Optional. The alerting rule name of this alert in the corresponding Prometheus configuration file.

Some external tools may require this field to be populated correctly in order to refer to the original Prometheus configuration file. The rule group name and the alert name are necessary to update the relevant AlertPolicies in case the definition of the rule group changes in the future.

This field is optional. If this field is not empty, then it must be a valid Prometheus label name. This field may not exceed 2048 Unicode characters in length.

Property Value
TypeDescription
string

Duration

public Duration Duration { get; set; }

Optional. Alerts are considered firing once their PromQL expression was evaluated to be "true" for this long. Alerts whose PromQL expression was not evaluated to be "true" for long enough are considered pending. Must be a non-negative duration or missing. This field is optional. Its default value is zero.

Property Value
TypeDescription
Duration

EvaluationInterval

public Duration EvaluationInterval { get; set; }

Optional. How often this rule should be evaluated. Must be a positive multiple of 30 seconds or missing. This field is optional. Its default value is 30 seconds. If this PrometheusQueryLanguageCondition was generated from a Prometheus alerting rule, then this value should be taken from the enclosing rule group.

Property Value
TypeDescription
Duration

Labels

public MapField<string, string> Labels { get; }

Optional. Labels to add to or overwrite in the PromQL query result. Label names must be valid. Label values can be templatized by using variables. The only available variable names are the names of the labels in the PromQL result, including "name" and "value". "labels" may be empty.

Property Value
TypeDescription
MapFieldstringstring

Query

public string Query { get; set; }

Required. The PromQL expression to evaluate. Every evaluation cycle this expression is evaluated at the current time, and all resultant time series become pending/firing alerts. This field must not be empty.

Property Value
TypeDescription
string

RuleGroup

public string RuleGroup { get; set; }

Optional. The rule group name of this alert in the corresponding Prometheus configuration file.

Some external tools may require this field to be populated correctly in order to refer to the original Prometheus configuration file. The rule group name and the alert name are necessary to update the relevant AlertPolicies in case the definition of the rule group changes in the future.

This field is optional. If this field is not empty, then it must contain a valid UTF-8 string. This field may not exceed 2048 Unicode characters in length.

Property Value
TypeDescription
string