-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathotel-collector-config.yaml
More file actions
59 lines (50 loc) · 1.13 KB
/
otel-collector-config.yaml
File metadata and controls
59 lines (50 loc) · 1.13 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
receivers:
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317
http:
endpoint: 0.0.0.0:4318
processors:
batch:
timeout: 10s
send_batch_size: 1024
send_batch_max_size: 2048
memory_limiter:
check_interval: 1s
limit_mib: 512
spike_limit_mib: 128
exporters:
otlphttp:
endpoint: http://openobserve:5080/api/default
headers:
Authorization: "Basic cm9vdEBleGFtcGxlLmNvbTpDb21wbGV4cGFzcyMxMjM="
stream-name: "default"
compression: gzip
timeout: 30s
debug:
verbosity: basic
sampling_initial: 5
sampling_thereafter: 200
extensions:
health_check:
endpoint: 0.0.0.0:13133
pprof:
endpoint: 0.0.0.0:1888
zpages:
endpoint: 0.0.0.0:55679
service:
extensions: [health_check, pprof, zpages]
pipelines:
traces:
receivers: [otlp]
processors: [memory_limiter, batch]
exporters: [otlphttp, debug]
metrics:
receivers: [otlp]
processors: [memory_limiter, batch]
exporters: [otlphttp, debug]
logs:
receivers: [otlp]
processors: [memory_limiter, batch]
exporters: [otlphttp, debug]