-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcollector-helm-values.yaml
More file actions
63 lines (63 loc) · 1.34 KB
/
collector-helm-values.yaml
File metadata and controls
63 lines (63 loc) · 1.34 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
mode: deployment
image:
repository: $REPOSITORY
tag: $TAG
command:
name: dynatrace-otel-collector
containerSecurityContext:
seccompProfile:
type: RuntimeDefault
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
allowPrivilegeEscalation: false
runAsNonRoot: true
runAsUser: 10001
runAsGroup: 10001
privileged: false
extraEnvs:
- name: DT_API_TOKEN
valueFrom:
secretKeyRef:
name: dynatrace-otelcol-dt-api-credentials
key: DT_API_TOKEN
- name: DT_ENDPOINT
valueFrom:
secretKeyRef:
name: dynatrace-otelcol-dt-api-credentials
key: DT_ENDPOINT
resources:
limits:
memory: 512Mi
alternateConfig:
receivers:
otlp:
protocols:
grpc:
endpoint: ${env:MY_POD_IP}:4317
http:
endpoint: ${env:MY_POD_IP}:4318
exporters:
otlp_http:
endpoint: "${env:DT_ENDPOINT}"
headers:
Authorization: "Api-Token ${env:DT_API_TOKEN}"
extensions:
health_check:
endpoint: "${env:MY_POD_IP}:13133"
service:
extensions: [health_check]
pipelines:
traces:
receivers: [otlp]
processors: []
exporters: [otlp_http]
metrics:
receivers: [otlp]
processors: []
exporters: [otlp_http]
logs:
receivers: [otlp]
processors: []
exporters: [otlp_http]