Class: Google::Apis::MonitoringV3::MonitoringQueryLanguageCondition
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV3::MonitoringQueryLanguageCondition
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/monitoring_v3/classes.rb,
generated/google/apis/monitoring_v3/representations.rb,
generated/google/apis/monitoring_v3/representations.rb
Overview
A condition type that allows alert policies to be defined using Monitoring Query Language (https://cloud.google.com/monitoring/mql).
Instance Attribute Summary collapse
-
#duration ⇒ String
The amount of time that a time series must violate the threshold to be considered failing.
-
#query ⇒ String
Monitoring Query Language (https://cloud.google.com/monitoring/mql) query that outputs a boolean stream.
-
#trigger ⇒ Google::Apis::MonitoringV3::Trigger
Specifies how many time series must fail a predicate to trigger a condition.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MonitoringQueryLanguageCondition
constructor
A new instance of MonitoringQueryLanguageCondition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MonitoringQueryLanguageCondition
Returns a new instance of MonitoringQueryLanguageCondition.
2687 2688 2689 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2687 def initialize(**args) update!(**args) end |
Instance Attribute Details
#duration ⇒ String
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.
Corresponds to the JSON property duration
2673 2674 2675 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2673 def duration @duration end |
#query ⇒ String
Monitoring Query Language (https://cloud.google.com/monitoring/mql) query that
outputs a boolean stream.
Corresponds to the JSON property query
2679 2680 2681 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2679 def query @query end |
#trigger ⇒ Google::Apis::MonitoringV3::Trigger
Specifies how many time series must fail a predicate to trigger a condition.
If not specified, then a count: 1
trigger is used.
Corresponds to the JSON property trigger
2685 2686 2687 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2685 def trigger @trigger end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2692 2693 2694 2695 2696 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2692 def update!(**args) @duration = args[:duration] if args.key?(:duration) @query = args[:query] if args.key?(:query) @trigger = args[:trigger] if args.key?(:trigger) end |