mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-15 00:04:59 +08:00
0cca5ae174
More usefully, including docker config for starting a CORS enabled OTLP collector so we don't have to use zipkin.
39 lines
673 B
YAML
39 lines
673 B
YAML
receivers:
|
|
otlp:
|
|
protocols:
|
|
http:
|
|
endpoint: 0.0.0.0:4318
|
|
cors:
|
|
allowed_origins:
|
|
- "http://*"
|
|
allowed_headers:
|
|
- "*"
|
|
processors:
|
|
batch:
|
|
timeout: 1s
|
|
resource:
|
|
attributes:
|
|
- key: test.key
|
|
value: "test-value"
|
|
action: insert
|
|
exporters:
|
|
logging:
|
|
loglevel: info
|
|
jaeger:
|
|
endpoint: jaeger-all-in-one:14250
|
|
tls:
|
|
insecure: true
|
|
extensions:
|
|
health_check:
|
|
pprof:
|
|
endpoint: :1888
|
|
zpages:
|
|
endpoint: :55679
|
|
service:
|
|
extensions: [pprof, zpages, health_check]
|
|
pipelines:
|
|
traces:
|
|
receivers: [otlp]
|
|
processors: [batch, resource]
|
|
exporters: [logging, jaeger]
|