Distributed Tracing Connecting Solace with Jaeger

Hi,
we solved our Problems. This is our otel-collector-config.yaml:
processors:
  batch:
exporters:
  logging:
    loglevel: “debug”
  jaeger:
    endpoint: jaeger-all-in-one:14250
    tls:
      insecure: true
receivers:
  otlp:
    protocols:
      grpc:
  solace:
    broker: [ solbroker:5672 ]
    auth:
      sasl_plain:
        username: trace
        password: trace
    tls:
      insecure: true
      insecure_skip_verify: true
    queue: queue://#telemetry-trace
service:
  telemetry:
    logs:
      level: “debug”
  pipelines:
    traces:
      receivers: [ otlp, solace ]
      processors: [ batch ]
      exporters: [ jaeger, logging ]
Also we did the following:
Access Control > Client Authentication > Settings > Change Type of Basic Authentication to “Internal Database” Telemetry > Receiver Connect ACLs > default action allow Jaeger is now showing a Trace for a message that is sent to the broker.
Thanks for your help.
Kind regards,
Kilian