Hi team, I have currently configured my Otel Collector to send traces data from the adservice (Otel-demo service) to AppDynamics over a proxy. My problem is that AppDynamics doesn't show any ingested data in the Otel section (No Data available). The collector logs show no errors. This is my Collector config: config: |
receivers:
otlp:
protocols:
grpc:
http:
processors:
resource:
attributes:
- key: appdynamics.controller.account
action: upsert
value: "company"
- key: appdynamics.controller.host
action: upsert
value: "company.saas.appdynamics.com"
- key: appdynamics.controller.port
action: upsert
value: 443
batch:
send_batch_size: 90
timeout: 30s
exporters:
otlphttp:
endpoint: "https://some-agent-api.saas.appdynamics.com"
headers: {"x-api-key": "<some-api-key>"}
logging:
verbosity: detailed
sampling_initial: 10
sampling_thereafter: 5
extensions:
zpages:
service:
telemetry:
logs:
level: debug
extensions: [zpages]
pipelines:
traces:
receivers: [otlp]
processors: [resource, batch]
exporters: [logging, otlphttp]
env:
- name: HTTPS_PROXY
value: proxy.company.com:8080
... View more