Interface AlertPolicy.Condition.MonitoringQueryLanguageConditionOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.google.protobuf.Duration getDuration()
      The amount of time that a time series must violate the threshold to be considered failing.
      com.google.protobuf.DurationOrBuilder getDurationOrBuilder()
      The amount of time that a time series must violate the threshold to be considered failing.
      AlertPolicy.Condition.EvaluationMissingData getEvaluationMissingData()
      A condition control that determines how metric-threshold conditions are evaluated when data stops arriving.
      int getEvaluationMissingDataValue()
      A condition control that determines how metric-threshold conditions are evaluated when data stops arriving.
      String getQuery()
      [Monitoring Query Language](https://cloud.google.com/monitoring/mql) query that outputs a boolean stream.
      com.google.protobuf.ByteString getQueryBytes()
      [Monitoring Query Language](https://cloud.google.com/monitoring/mql) query that outputs a boolean stream.
      AlertPolicy.Condition.Trigger getTrigger()
      The number/percent of time series for which the comparison must hold in order for the condition to trigger.
      AlertPolicy.Condition.TriggerOrBuilder getTriggerOrBuilder()
      The number/percent of time series for which the comparison must hold in order for the condition to trigger.
      boolean hasDuration()
      The amount of time that a time series must violate the threshold to be considered failing.
      boolean hasTrigger()
      The number/percent of time series for which the comparison must hold in order for the condition to trigger.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getQuery

        String getQuery()
         [Monitoring Query Language](https://cloud.google.com/monitoring/mql)
         query that outputs a boolean stream.
         
        string query = 1;
        Returns:
        The query.
      • getQueryBytes

        com.google.protobuf.ByteString getQueryBytes()
         [Monitoring Query Language](https://cloud.google.com/monitoring/mql)
         query that outputs a boolean stream.
         
        string query = 1;
        Returns:
        The bytes for query.
      • hasDuration

        boolean hasDuration()
         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.
         
        .google.protobuf.Duration duration = 2;
        Returns:
        Whether the duration field is set.
      • getDuration

        com.google.protobuf.Duration getDuration()
         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.
         
        .google.protobuf.Duration duration = 2;
        Returns:
        The duration.
      • getDurationOrBuilder

        com.google.protobuf.DurationOrBuilder getDurationOrBuilder()
         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.
         
        .google.protobuf.Duration duration = 2;
      • hasTrigger

        boolean hasTrigger()
         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.
         
        .google.monitoring.v3.AlertPolicy.Condition.Trigger trigger = 3;
        Returns:
        Whether the trigger field is set.
      • getTrigger

        AlertPolicy.Condition.Trigger getTrigger()
         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.
         
        .google.monitoring.v3.AlertPolicy.Condition.Trigger trigger = 3;
        Returns:
        The trigger.
      • getTriggerOrBuilder

        AlertPolicy.Condition.TriggerOrBuilder getTriggerOrBuilder()
         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.
         
        .google.monitoring.v3.AlertPolicy.Condition.Trigger trigger = 3;
      • getEvaluationMissingDataValue

        int getEvaluationMissingDataValue()
         A condition control that determines how metric-threshold conditions
         are evaluated when data stops arriving.
         
        .google.monitoring.v3.AlertPolicy.Condition.EvaluationMissingData evaluation_missing_data = 4;
        Returns:
        The enum numeric value on the wire for evaluationMissingData.
      • getEvaluationMissingData

        AlertPolicy.Condition.EvaluationMissingData getEvaluationMissingData()
         A condition control that determines how metric-threshold conditions
         are evaluated when data stops arriving.
         
        .google.monitoring.v3.AlertPolicy.Condition.EvaluationMissingData evaluation_missing_data = 4;
        Returns:
        The evaluationMissingData.