Avoid syntax error for insecure key (#45)
According to the docs: https://opentelemetry.io/docs/collector/configuration/#exporters the insecure key should be inside tls key otherwise the service doesn't start.
This commit is contained in:
parent
b4046eb073
commit
8755d5fdba
|
@ -14,7 +14,8 @@ exporters:
|
||||||
endpoint: "http://zipkin:9411/api/v2/spans"
|
endpoint: "http://zipkin:9411/api/v2/spans"
|
||||||
jaeger:
|
jaeger:
|
||||||
endpoint: jaeger-all-in-one:14250
|
endpoint: jaeger-all-in-one:14250
|
||||||
insecure: true
|
tls:
|
||||||
|
insecure: true
|
||||||
extensions:
|
extensions:
|
||||||
zpages: {}
|
zpages: {}
|
||||||
service:
|
service:
|
||||||
|
|
Loading…
Reference in New Issue