agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/processors/ExporterWithAttributeProcessor.java [46:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public CompletableResultCode export(Collection<SpanData> spans) {
    // we need to filter attributes before passing on to delegate
    List<SpanData> copy = new ArrayList<>();
    for (SpanData span : spans) {
      copy.add(process(span));
    }
    return delegate.export(copy);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/processors/ExporterWithLogProcessor.java [46:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public CompletableResultCode export(Collection<SpanData> spans) {
    // we need to filter attributes before passing on to delegate
    List<SpanData> copy = new ArrayList<>();
    for (SpanData span : spans) {
      copy.add(process(span));
    }
    return delegate.export(copy);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/processors/ExporterWithSpanProcessor.java [46:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public CompletableResultCode export(Collection<SpanData> spans) {
    // we need to filter attributes before passing on to delegate
    List<SpanData> copy = new ArrayList<>();
    for (SpanData span : spans) {
      copy.add(process(span));
    }
    return delegate.export(copy);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



