You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The config files in this example error out with key errors due to a breaking change in open-telemetry/opentelemetry-collector#4063. As of now the insecure key needs to be nested under tls
ie
exporters:
otlp:
endpoint: "{{ with service "otlp.otel-demo-collector" }}{{ with index . 0 }}{{ .Address }}:{{ .Port }}{{ end }}{{ end }}"
insecure: true
should be
exporters:
otlp:
endpoint: "{{ with service "otlp.otel-demo-collector" }}{{ with index . 0 }}{{ .Address }}:{{ .Port }}{{ end }}{{ end }}"
tls:
insecure: true
The text was updated successfully, but these errors were encountered:
The config files in this example error out with key errors due to a breaking change in open-telemetry/opentelemetry-collector#4063. As of now the insecure key needs to be nested under tls
ie
should be
The text was updated successfully, but these errors were encountered: