-
Notifications
You must be signed in to change notification settings - Fork 1
/
otel-config.yaml
65 lines (61 loc) · 1.01 KB
/
otel-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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
extensions:
health_check:
zpages:
endpoint: :55679
receivers:
otlp:
protocols:
grpc:
http:
zipkin:
processors:
batch:
exporters:
logging:
# logLevel: debug
file/traces:
path: /log/otel/traces.log
file/metrics:
path: /log/otel/metrics.log
file/logs:
path: /log/otel/logs.log
otlp:
endpoint: "${JAEGER_ENDPOINT}"
tls:
insecure: true
prometheus:
endpoint: "0.0.0.0:8889"
loki:
endpoint: "${LOKI_ENDPOINT}"
tls:
insecure: true
service:
pipelines:
traces:
receivers:
- otlp
- zipkin
processors: [batch]
exporters:
- logging
- file/traces
- otlp
metrics:
receivers:
- otlp
processors: [batch]
exporters:
- logging
- file/metrics
- prometheus
logs:
receivers:
- otlp
processors: [batch]
exporters:
- logging
- file/logs
- loki
extensions:
- health_check
- zpages