-
Notifications
You must be signed in to change notification settings - Fork 0
/
otel-collector-config-yaml-configmap.yaml
46 lines (42 loc) · 1.46 KB
/
otel-collector-config-yaml-configmap.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
apiVersion: v1
data:
otel-collector-config.yaml: |-
# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0
# imported from https://github.com/mdelapenya/junit2otlp
receivers:
otlp:
protocols:
grpc:
exporters:
logging:
loglevel: debug
file:
path: /tmp/tests.json
jaeger:
endpoint: jaeger-all-in-one:14250
tls:
insecure: true
processors:
batch:
extensions:
health_check:
pprof:
endpoint: :1888
zpages:
endpoint: :55679
service:
extensions: [pprof, zpages, health_check]
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [logging, jaeger]
metrics:
receivers: [otlp]
processors: [batch]
exporters: [logging]
kind: ConfigMap
metadata:
creationTimestamp: null
name: otel-collector-config-yaml