Class AlertPolicy.Condition.LogMatch.Builder

  • All Implemented Interfaces:
    AlertPolicy.Condition.LogMatchOrBuilder, com.google.protobuf.Message.Builder, com.google.protobuf.MessageLite.Builder, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Cloneable
    Enclosing class:
    AlertPolicy.Condition.LogMatch

    public static final class AlertPolicy.Condition.LogMatch.Builder
    extends com.google.protobuf.GeneratedMessageV3.Builder<AlertPolicy.Condition.LogMatch.Builder>
    implements AlertPolicy.Condition.LogMatchOrBuilder
     A condition type that checks whether a log message in the [scoping
     project](https://cloud.google.com/monitoring/api/v3#project_name)
     satisfies the given filter. Logs from other projects in the metrics
     scope are not evaluated.
     
    Protobuf type google.monitoring.v3.AlertPolicy.Condition.LogMatch
    • Method Detail

      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetMapField

        protected com.google.protobuf.MapField internalGetMapField​(int number)
        Overrides:
        internalGetMapField in class com.google.protobuf.GeneratedMessageV3.Builder<AlertPolicy.Condition.LogMatch.Builder>
      • internalGetMutableMapField

        protected com.google.protobuf.MapField internalGetMutableMapField​(int number)
        Overrides:
        internalGetMutableMapField in class com.google.protobuf.GeneratedMessageV3.Builder<AlertPolicy.Condition.LogMatch.Builder>
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<AlertPolicy.Condition.LogMatch.Builder>
      • getDescriptorForType

        public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.Message.Builder
        Specified by:
        getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
        Overrides:
        getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<AlertPolicy.Condition.LogMatch.Builder>
      • getDefaultInstanceForType

        public AlertPolicy.Condition.LogMatch getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      • build

        public AlertPolicy.Condition.LogMatch build()
        Specified by:
        build in interface com.google.protobuf.Message.Builder
        Specified by:
        build in interface com.google.protobuf.MessageLite.Builder
      • buildPartial

        public AlertPolicy.Condition.LogMatch buildPartial()
        Specified by:
        buildPartial in interface com.google.protobuf.Message.Builder
        Specified by:
        buildPartial in interface com.google.protobuf.MessageLite.Builder
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<AlertPolicy.Condition.LogMatch.Builder>
      • getFilter

        public String getFilter()
         Required. A logs-based filter. See [Advanced Logs
         Queries](https://cloud.google.com/logging/docs/view/advanced-queries)
         for how this filter should be constructed.
         
        string filter = 1 [(.google.api.field_behavior) = REQUIRED];
        Specified by:
        getFilter in interface AlertPolicy.Condition.LogMatchOrBuilder
        Returns:
        The filter.
      • getFilterBytes

        public com.google.protobuf.ByteString getFilterBytes()
         Required. A logs-based filter. See [Advanced Logs
         Queries](https://cloud.google.com/logging/docs/view/advanced-queries)
         for how this filter should be constructed.
         
        string filter = 1 [(.google.api.field_behavior) = REQUIRED];
        Specified by:
        getFilterBytes in interface AlertPolicy.Condition.LogMatchOrBuilder
        Returns:
        The bytes for filter.
      • setFilter

        public AlertPolicy.Condition.LogMatch.Builder setFilter​(String value)
         Required. A logs-based filter. See [Advanced Logs
         Queries](https://cloud.google.com/logging/docs/view/advanced-queries)
         for how this filter should be constructed.
         
        string filter = 1 [(.google.api.field_behavior) = REQUIRED];
        Parameters:
        value - The filter to set.
        Returns:
        This builder for chaining.
      • clearFilter

        public AlertPolicy.Condition.LogMatch.Builder clearFilter()
         Required. A logs-based filter. See [Advanced Logs
         Queries](https://cloud.google.com/logging/docs/view/advanced-queries)
         for how this filter should be constructed.
         
        string filter = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        This builder for chaining.
      • setFilterBytes

        public AlertPolicy.Condition.LogMatch.Builder setFilterBytes​(com.google.protobuf.ByteString value)
         Required. A logs-based filter. See [Advanced Logs
         Queries](https://cloud.google.com/logging/docs/view/advanced-queries)
         for how this filter should be constructed.
         
        string filter = 1 [(.google.api.field_behavior) = REQUIRED];
        Parameters:
        value - The bytes for filter to set.
        Returns:
        This builder for chaining.
      • getLabelExtractorsCount

        public int getLabelExtractorsCount()
        Description copied from interface: AlertPolicy.Condition.LogMatchOrBuilder
         Optional. A map from a label key to an extractor expression, which is
         used to extract the value for this label key. Each entry in this map is
         a specification for how data should be extracted from log entries that
         match `filter`. Each combination of extracted values is treated as a
         separate rule for the purposes of triggering notifications. Label keys
         and corresponding values can be used in notifications generated by this
         condition.
        
         Please see [the documentation on logs-based metric
         `valueExtractor`s](https://cloud.google.com/logging/docs/reference/v2/rest/v2/projects.metrics#LogMetric.FIELDS.value_extractor)
         for syntax and examples.
         
        map<string, string> label_extractors = 2;
        Specified by:
        getLabelExtractorsCount in interface AlertPolicy.Condition.LogMatchOrBuilder
      • containsLabelExtractors

        public boolean containsLabelExtractors​(String key)
         Optional. A map from a label key to an extractor expression, which is
         used to extract the value for this label key. Each entry in this map is
         a specification for how data should be extracted from log entries that
         match `filter`. Each combination of extracted values is treated as a
         separate rule for the purposes of triggering notifications. Label keys
         and corresponding values can be used in notifications generated by this
         condition.
        
         Please see [the documentation on logs-based metric
         `valueExtractor`s](https://cloud.google.com/logging/docs/reference/v2/rest/v2/projects.metrics#LogMetric.FIELDS.value_extractor)
         for syntax and examples.
         
        map<string, string> label_extractors = 2;
        Specified by:
        containsLabelExtractors in interface AlertPolicy.Condition.LogMatchOrBuilder
      • getLabelExtractorsMap

        public Map<String,​String> getLabelExtractorsMap()
         Optional. A map from a label key to an extractor expression, which is
         used to extract the value for this label key. Each entry in this map is
         a specification for how data should be extracted from log entries that
         match `filter`. Each combination of extracted values is treated as a
         separate rule for the purposes of triggering notifications. Label keys
         and corresponding values can be used in notifications generated by this
         condition.
        
         Please see [the documentation on logs-based metric
         `valueExtractor`s](https://cloud.google.com/logging/docs/reference/v2/rest/v2/projects.metrics#LogMetric.FIELDS.value_extractor)
         for syntax and examples.
         
        map<string, string> label_extractors = 2;
        Specified by:
        getLabelExtractorsMap in interface AlertPolicy.Condition.LogMatchOrBuilder
      • getLabelExtractorsOrDefault

        public String getLabelExtractorsOrDefault​(String key,
                                                  String defaultValue)
         Optional. A map from a label key to an extractor expression, which is
         used to extract the value for this label key. Each entry in this map is
         a specification for how data should be extracted from log entries that
         match `filter`. Each combination of extracted values is treated as a
         separate rule for the purposes of triggering notifications. Label keys
         and corresponding values can be used in notifications generated by this
         condition.
        
         Please see [the documentation on logs-based metric
         `valueExtractor`s](https://cloud.google.com/logging/docs/reference/v2/rest/v2/projects.metrics#LogMetric.FIELDS.value_extractor)
         for syntax and examples.
         
        map<string, string> label_extractors = 2;
        Specified by:
        getLabelExtractorsOrDefault in interface AlertPolicy.Condition.LogMatchOrBuilder
      • getLabelExtractorsOrThrow

        public String getLabelExtractorsOrThrow​(String key)
         Optional. A map from a label key to an extractor expression, which is
         used to extract the value for this label key. Each entry in this map is
         a specification for how data should be extracted from log entries that
         match `filter`. Each combination of extracted values is treated as a
         separate rule for the purposes of triggering notifications. Label keys
         and corresponding values can be used in notifications generated by this
         condition.
        
         Please see [the documentation on logs-based metric
         `valueExtractor`s](https://cloud.google.com/logging/docs/reference/v2/rest/v2/projects.metrics#LogMetric.FIELDS.value_extractor)
         for syntax and examples.
         
        map<string, string> label_extractors = 2;
        Specified by:
        getLabelExtractorsOrThrow in interface AlertPolicy.Condition.LogMatchOrBuilder
      • removeLabelExtractors

        public AlertPolicy.Condition.LogMatch.Builder removeLabelExtractors​(String key)
         Optional. A map from a label key to an extractor expression, which is
         used to extract the value for this label key. Each entry in this map is
         a specification for how data should be extracted from log entries that
         match `filter`. Each combination of extracted values is treated as a
         separate rule for the purposes of triggering notifications. Label keys
         and corresponding values can be used in notifications generated by this
         condition.
        
         Please see [the documentation on logs-based metric
         `valueExtractor`s](https://cloud.google.com/logging/docs/reference/v2/rest/v2/projects.metrics#LogMetric.FIELDS.value_extractor)
         for syntax and examples.
         
        map<string, string> label_extractors = 2;
      • getMutableLabelExtractors

        @Deprecated
        public Map<String,​String> getMutableLabelExtractors()
        Deprecated.
        Use alternate mutation accessors instead.
      • putLabelExtractors

        public AlertPolicy.Condition.LogMatch.Builder putLabelExtractors​(String key,
                                                                         String value)
         Optional. A map from a label key to an extractor expression, which is
         used to extract the value for this label key. Each entry in this map is
         a specification for how data should be extracted from log entries that
         match `filter`. Each combination of extracted values is treated as a
         separate rule for the purposes of triggering notifications. Label keys
         and corresponding values can be used in notifications generated by this
         condition.
        
         Please see [the documentation on logs-based metric
         `valueExtractor`s](https://cloud.google.com/logging/docs/reference/v2/rest/v2/projects.metrics#LogMetric.FIELDS.value_extractor)
         for syntax and examples.
         
        map<string, string> label_extractors = 2;
      • putAllLabelExtractors

        public AlertPolicy.Condition.LogMatch.Builder putAllLabelExtractors​(Map<String,​String> values)
         Optional. A map from a label key to an extractor expression, which is
         used to extract the value for this label key. Each entry in this map is
         a specification for how data should be extracted from log entries that
         match `filter`. Each combination of extracted values is treated as a
         separate rule for the purposes of triggering notifications. Label keys
         and corresponding values can be used in notifications generated by this
         condition.
        
         Please see [the documentation on logs-based metric
         `valueExtractor`s](https://cloud.google.com/logging/docs/reference/v2/rest/v2/projects.metrics#LogMetric.FIELDS.value_extractor)
         for syntax and examples.
         
        map<string, string> label_extractors = 2;