hello I want to exclude one URL from the External ...
# support
u
hello I want to exclude one URL from the External Call Duration (by Address) in the sevices menu. I excluded it through the traces.span of the filterprocessor, but it doesn't seem to be reflected. Is there a way? (It seems like it is excluded from the External APIs menu and is not visible.)
Copy code
processors:
      batch:
        send_batch_size: 50000
        timeout: 1s
      filter/ottl:
        error_mode: ignore
        logs:
          log_record:
          - IsMatch(body, "(?i).*actuator.*")
          - IsMatch(body, "(?i).*health.*")
          - IsMatch(body, "(?i).*telemetry.*")
          - IsMatch(body, "(?i).*thanos.*")
        traces:
          span:
          - attributes["net.peer.name"] == "heimdall.prod.apm"
          - attributes["http.url"] == "<http://heimdall.prod.apm/config/v1/agents>"