-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathotel-sdk-config.yaml
More file actions
94 lines (94 loc) · 2.59 KB
/
Copy pathotel-sdk-config.yaml
File metadata and controls
94 lines (94 loc) · 2.59 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
83
84
85
86
87
88
89
90
91
92
93
94
# otel-sdk-config.yaml is a comprehensive starting point for configuring the SDK, including exporting to
# localhost via OTLP.
#
# NOTE: With the exception of env var substitution syntax (i.e. ${MY_ENV}), SDKs ignore
# environment variables when interpreting config files. This including ignoring all env
# vars defined in https://opentelemetry.io/docs/specs/otel/configuration/sdk-environment-variables/.
#
# For schema documentation, including required properties, semantics, default behavior, etc,
# see: https://opentelemetry.io/docs/specs/otel-config/types/
file_format: "1.1"
disabled: false
log_level: info
resource:
attributes:
- name: service.name
value: unknown_service
attribute_limits:
attribute_value_length_limit:
attribute_count_limit: 128
propagator:
composite:
- tracecontext:
- baggage:
tracer_provider:
processors:
- batch:
schedule_delay: 5000
export_timeout: 30000
max_queue_size: 2048
max_export_batch_size: 512
exporter:
otlp_http:
endpoint: http://localhost:4318/v1/traces
tls:
ca_file:
key_file:
cert_file:
compression: gzip
timeout: 10000
limits:
attribute_value_length_limit:
attribute_count_limit: 128
event_count_limit: 128
link_count_limit: 128
event_attribute_count_limit: 128
link_attribute_count_limit: 128
sampler:
parent_based:
root:
always_on:
remote_parent_sampled:
always_on:
remote_parent_not_sampled:
always_off:
local_parent_sampled:
always_on:
local_parent_not_sampled:
always_off:
meter_provider:
readers:
- periodic:
interval: 60000
timeout: 30000
exporter:
otlp_http:
endpoint: http://localhost:4318/v1/metrics
tls:
ca_file:
key_file:
cert_file:
compression: gzip
timeout: 10000
temporality_preference: cumulative
default_histogram_aggregation: explicit_bucket_histogram
exemplar_filter: trace_based
logger_provider:
processors:
- batch:
schedule_delay: 1000
export_timeout: 30000
max_queue_size: 2048
max_export_batch_size: 512
exporter:
otlp_http:
endpoint: http://localhost:4318/v1/logs
tls:
ca_file:
key_file:
cert_file:
compression: gzip
timeout: 10000
limits:
attribute_value_length_limit:
attribute_count_limit: 128