Class: Google::Cloud::Monitoring::V3::AlertPolicy::Condition::MonitoringQueryLanguageCondition
- Inherits:
-
Object
- Object
- Google::Cloud::Monitoring::V3::AlertPolicy::Condition::MonitoringQueryLanguageCondition
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/monitoring/v3/alert.rb
Overview
A condition type that allows alert policies to be defined using Monitoring Query Language.
Instance Attribute Summary collapse
-
#duration ⇒ ::Google::Protobuf::Duration
The amount of time that a time series must violate the threshold to be considered failing.
-
#evaluation_missing_data ⇒ ::Google::Cloud::Monitoring::V3::AlertPolicy::Condition::EvaluationMissingData
A condition control that determines how metric-threshold conditions are evaluated when data stops arriving.
-
#query ⇒ ::String
Monitoring Query Language query that outputs a boolean stream.
-
#trigger ⇒ ::Google::Cloud::Monitoring::V3::AlertPolicy::Condition::Trigger
The number/percent of time series for which the comparison must hold in order for the condition to trigger.
Instance Attribute Details
#duration ⇒ ::Google::Protobuf::Duration
Returns 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.
493 494 495 496 |
# File 'proto_docs/google/monitoring/v3/alert.rb', line 493 class MonitoringQueryLanguageCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#evaluation_missing_data ⇒ ::Google::Cloud::Monitoring::V3::AlertPolicy::Condition::EvaluationMissingData
Returns A condition control that determines how metric-threshold conditions are evaluated when data stops arriving.
493 494 495 496 |
# File 'proto_docs/google/monitoring/v3/alert.rb', line 493 class MonitoringQueryLanguageCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#query ⇒ ::String
Returns Monitoring Query Language query that outputs a boolean stream.
493 494 495 496 |
# File 'proto_docs/google/monitoring/v3/alert.rb', line 493 class MonitoringQueryLanguageCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#trigger ⇒ ::Google::Cloud::Monitoring::V3::AlertPolicy::Condition::Trigger
Returns 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.
493 494 495 496 |
# File 'proto_docs/google/monitoring/v3/alert.rb', line 493 class MonitoringQueryLanguageCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |