-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathotelcol-config.yaml
More file actions
82 lines (80 loc) · 1.96 KB
/
otelcol-config.yaml
File metadata and controls
82 lines (80 loc) · 1.96 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
receivers:
syslog:
udp:
listen_address: 0.0.0.0:514
protocol: rfc5424
filelog:
include:
- ./logs/*.log
include_file_name: false
include_file_path_resolved: true
start_at: beginning
opencensus: {}
jaeger:
protocols:
thrift_compact:
endpoint:
thrift_http:
endpoint:
grpc:
endpoint:
otlp:
protocols:
grpc:
endpoint:
http:
endpoint:
otlp/cors:
protocols:
http:
endpoint: 0.0.0.0:4319
cors:
allowed_origins:
- http://localhost:3000
zipkin:
endpoint:
processors:
memory_limiter:
check_interval: 5s
limit_mib: 1900
batch:
send_batch_size: 256
send_batch_max_size: 512
timeout: 5s
resourcedetection:
detectors: ["system","env","docker"]
timeout: 2s
override: false
extensions:
health_check: {}
sumologic:
install_token: $SUMOLOGIC_TOKEN
collector_name: opentelemetry-workshop
#Deployment API base URL
#api_base_url: API_BASE_URL_HERE
#default/US1 https://open-collectors.sumologic.com
#US2 https://open-collectors.us2.sumologic.com
#AU https://open-collectors.au.sumologic.com
#DE https://open-collectors.de.sumologic.com
#EU https://open-collectors.eu.sumologic.com
#JP https://open-collectors.jp.sumologic.com
#CA https://open-collectors.ca.sumologic.com
#IN https://open-collectors.in.sumologic.com
exporters:
logging:
sumologic:
service:
extensions: [health_check, sumologic]
pipelines:
traces:
receivers: [jaeger, otlp, otlp/cors, zipkin]
processors: [memory_limiter, resourcedetection, batch]
exporters: [sumologic, logging]
metrics:
receivers: [otlp]
processors: [memory_limiter, resourcedetection, batch]
exporters: [sumologic, logging]
logs:
receivers: [syslog, filelog]
processors: [memory_limiter, resourcedetection, batch]
exporters: [sumologic, logging]