Class: Google::Apis::MonitoringV3::PrometheusQueryLanguageCondition

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/google/apis/monitoring_v3/representations.rb

Overview

A condition type that allows alert policies to be defined using Prometheus Query Language (PromQL) (https://prometheus.io/docs/prometheus/latest/querying/ basics/).The PrometheusQueryLanguageCondition message contains information from a Prometheus alerting rule and its associated rule group.A Prometheus alerting rule is described here (https://prometheus.io/docs/prometheus/latest/ configuration/alerting_rules/). The semantics of a Prometheus alerting rule is described here (https://prometheus.io/docs/prometheus/latest/configuration/ recording_rules/#rule).A Prometheus rule group is described here (https:// prometheus.io/docs/prometheus/latest/configuration/recording_rules/). The semantics of a Prometheus rule group is described here (https://prometheus.io/ docs/prometheus/latest/configuration/recording_rules/#rule_group).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).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PrometheusQueryLanguageCondition

Returns a new instance of PrometheusQueryLanguageCondition.



3833
3834
3835
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3833

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#alert_ruleString

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 (https://prometheus.io/docs/concepts/data_model/#metric- names-and-labels). Corresponds to the JSON property alertRule

Returns:

  • (String)


3786
3787
3788
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3786

def alert_rule
  @alert_rule
end

#durationString

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. The default value is zero. Must be zero or positive. Corresponds to the JSON property duration

Returns:

  • (String)


3794
3795
3796
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3794

def duration
  @duration
end

#evaluation_intervalString

Required. How often this rule should be evaluated. Must be a positive multiple of 30 seconds or missing. The 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. Corresponds to the JSON property evaluationInterval

Returns:

  • (String)


3802
3803
3804
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3802

def evaluation_interval
  @evaluation_interval
end

#labelsHash<String,String>

Optional. Labels to add to or overwrite in the PromQL query result. Label names must be valid (https://prometheus.io/docs/concepts/data_model/#metric- names-and-labels). Label values can be templatized by using variables (https:// cloud.google.com/monitoring/alerts/doc-variables). The only available variable names are the names of the labels in the PromQL result, including "name" and "value". "labels" may be empty. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


3812
3813
3814
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3812

def labels
  @labels
end

#queryString

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. Corresponds to the JSON property query

Returns:

  • (String)


3819
3820
3821
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3819

def query
  @query
end

#rule_groupString

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 be a valid Prometheus label name (https://prometheus.io/docs/concepts/data_model/#metric- names-and-labels). Corresponds to the JSON property ruleGroup

Returns:

  • (String)


3831
3832
3833
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3831

def rule_group
  @rule_group
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3838
3839
3840
3841
3842
3843
3844
3845
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3838

def update!(**args)
  @alert_rule = args[:alert_rule] if args.key?(:alert_rule)
  @duration = args[:duration] if args.key?(:duration)
  @evaluation_interval = args[:evaluation_interval] if args.key?(:evaluation_interval)
  @labels = args[:labels] if args.key?(:labels)
  @query = args[:query] if args.key?(:query)
  @rule_group = args[:rule_group] if args.key?(:rule_group)
end