agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/processors/LogProcessor.java [44:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public LogProcessor(
      @Nullable IncludeExclude include,
      @Nullable IncludeExclude exclude,
      List<AttributeKey<?>> fromAttributes,
      List<Pattern> toAttributeRulePatterns,
      List<List<String>> groupNames,
      String separator) {
    super(include, exclude);
    this.fromAttributes = fromAttributes;
    this.toAttributeRulePatterns = toAttributeRulePatterns;
    this.groupNames = groupNames;
    this.separator = separator;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/processors/SpanProcessor.java [44:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public SpanProcessor(
      @Nullable IncludeExclude include,
      @Nullable IncludeExclude exclude,
      List<AttributeKey<?>> fromAttributes,
      List<Pattern> toAttributeRulePatterns,
      List<List<String>> groupNames,
      String separator) {
    super(include, exclude);
    this.fromAttributes = fromAttributes;
    this.toAttributeRulePatterns = toAttributeRulePatterns;
    this.groupNames = groupNames;
    this.separator = separator;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



