See: #7608
Moreover,
Note that otlpmetrichttp and otlptracehttp also do not support such env vars.
This doesn't seem to be the case
|
envconfig.WithBool("INSECURE", func(b bool) { opts = append(opts, withInsecure(b)) }), |
|
envconfig.WithBool("METRICS_INSECURE", func(b bool) { opts = append(opts, withInsecure(b)) }), |
|
envconfig.WithBool("INSECURE", func(b bool) { opts = append(opts, withInsecure(b)) }), |
|
envconfig.WithBool("TRACES_INSECURE", func(b bool) { opts = append(opts, withInsecure(b)) }), |
So at least the Go impl is also not in compliance with the spec and is internally inconsistent.
Originally posted by @fd in #7608 (comment)