hello everyone, I'm config otel using connectors r...
# general
n
hello everyone, I'm config otel using connectors routing to signoz exporter by the condition: attributes["service.name"]. Total have 12 pipelines so get error logs:
Copy code
Error: failed to build pipelines: pipeline not found: missing consumer: "traces/default"; missing consumer: "metrics/default"
When reduce pipeline, it working fine. My question is max of pipelines which otel support ? • otel/opentelemetry-collector-contrib version 0.120.0
My config
Copy code
apiVersion: v1
data:
  relay: |
    connectors:
      routing:
        default_pipelines:
        - logs/default
        - traces/default
        - metrics/default
        table:
        - condition: attributes["service.name"] == "example-app"
          context: resource
          pipelines:
          - logs/datadog
          - traces/datadog
          - metrics/datadog

.....
    service:
      extensions:
      - health_check
      pipelines:
        logs:
          exporters:
          - debug
          processors:
          - memory_limiter
          - batch
          receivers:
          - otlp
        logs/datadog:
          exporters:
          - debug
          - datadog/exporter
          processors:
          - batch
          - attributes
          - attributes/ddsource
          receivers:
          - routing
        logs/default:
          exporters:
          - debug
          - otlphttp
          processors:
          - batch
          - attributes
          receivers:
          - routing
        logs/in:
          exporters:
          - debug
          - routing
          processors:
          - batch
          - attributes
          receivers:
          - otlp
        metrics:
          exporters:
          - debug
          processors:
          - memory_limiter
          - batch
          receivers:
          - otlp
          - prometheus
          - k8s_cluster
        metrics/datadog:
          exporters:
          - debug
          - datadog/exporter
          processors:
          - batch
          - attributes
          receivers:
          - routing
        metrics/default:
          exporters:
          - debug
          - otlphttp
          processors:
          - batch
          - attributes
          receivers:
          - routing
        metrics/in:
          exporters:
          - debug
          - routing
          processors:
          - batch
          - attributes
          receivers:
          - otlp
        traces:
          exporters:
          - debug
          processors:
          - memory_limiter
          - batch
          receivers:
          - otlp
          - jaeger
          - zipkin
        traces/datadog:
          exporters:
          - debug
          - datadog/exporter
          processors:
          - batch
          - attributes
          receivers:
          - routing
        traces/default:
          exporters:
          - debug
          - otlphttp
          processors:
          - batch
          - attributes
          receivers:
          - routing
        traces/in:
          exporters:
          - debug
          - routing
          processors:
          - batch
          - attributes
          receivers:
          - otlp