-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathotel-collector-config.yaml
47 lines (43 loc) · 1.01 KB
/
otel-collector-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
exporters:
otlphttp:
endpoint: "https://pdx-sls-agent-api.saas.appdynamics.com"
headers: {"x-api-key": "${env:APPD_API_KEY}"}
debug:
verbosity: detailed
processors:
resource:
attributes:
- key: appdynamics.controller.account
action: upsert
value: ${env:APPD_CONTROLLER_ID}
- key: appdynamics.controller.host
action: upsert
value: ${env:APPD_CONTROLLER_ID}.saas.appdynamics.com
- key: appdynamics.controller.port
action: upsert
value: 443
- key: service.namespace
action: upsert
value: ${env:APPD_APPLICATION_NAME}
- key: service.name
action: upsert
value: ${env:APPD_APPLICATION_TIER}
batch:
timeout: 30s
send_batch_size: 90
receivers:
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317
http:
endpoint: 0.0.0.0:4318
service:
pipelines:
traces:
receivers: [otlp]
processors: [resource, batch]
exporters: [otlphttp, debug]
extensions:
zpages:
endpoint: 0.0.0.0:55679