mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-16 10:19:23 +02:00
24414b2455
* setup global envconfig package for otlp exporter * use envconfig in otlpmetrics package * fix lint * add changelog entry * Update exporters/otlp/internal/envconfig/envconfig.go Co-authored-by: Chester Cheung <cheung.zhy.csu@gmail.com> * fix lint Co-authored-by: Chester Cheung <cheung.zhy.csu@gmail.com> Co-authored-by: Anthony Mirabella <a9@aneurysm9.com>
130 lines
4.3 KiB
Go
130 lines
4.3 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package otlpconfig // import "go.opentelemetry.io/otel/exporters/otlp/otlptrace/internal/otlpconfig"
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"io/ioutil"
|
|
"net/url"
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
"time"
|
|
|
|
"go.opentelemetry.io/otel/exporters/otlp/internal/envconfig"
|
|
)
|
|
|
|
// DefaultEnvOptionsReader is the default environments reader
|
|
var DefaultEnvOptionsReader = envconfig.EnvOptionsReader{
|
|
GetEnv: os.Getenv,
|
|
ReadFile: ioutil.ReadFile,
|
|
Namespace: "OTEL_EXPORTER_OTLP",
|
|
}
|
|
|
|
// ApplyGRPCEnvConfigs applies the env configurations for gRPC
|
|
func ApplyGRPCEnvConfigs(cfg Config) Config {
|
|
opts := getOptionsFromEnv()
|
|
for _, opt := range opts {
|
|
cfg = opt.ApplyGRPCOption(cfg)
|
|
}
|
|
return cfg
|
|
}
|
|
|
|
// ApplyHTTPEnvConfigs applies the env configurations for HTTP
|
|
func ApplyHTTPEnvConfigs(cfg Config) Config {
|
|
opts := getOptionsFromEnv()
|
|
for _, opt := range opts {
|
|
cfg = opt.ApplyHTTPOption(cfg)
|
|
}
|
|
return cfg
|
|
}
|
|
|
|
func getOptionsFromEnv() []GenericOption {
|
|
opts := []GenericOption{}
|
|
|
|
DefaultEnvOptionsReader.Apply(
|
|
envconfig.WithURL("ENDPOINT", func(u *url.URL) {
|
|
opts = append(opts, withEndpointScheme(u))
|
|
opts = append(opts, newSplitOption(func(cfg Config) Config {
|
|
cfg.Traces.Endpoint = u.Host
|
|
// For OTLP/HTTP endpoint URLs without a per-signal
|
|
// configuration, the passed endpoint is used as a base URL
|
|
// and the signals are sent to these paths relative to that.
|
|
cfg.Traces.URLPath = path.Join(u.Path, DefaultTracesPath)
|
|
return cfg
|
|
}, withEndpointForGRPC(u)))
|
|
}),
|
|
envconfig.WithURL("TRACES_ENDPOINT", func(u *url.URL) {
|
|
opts = append(opts, withEndpointScheme(u))
|
|
opts = append(opts, newSplitOption(func(cfg Config) Config {
|
|
cfg.Traces.Endpoint = u.Host
|
|
// For endpoint URLs for OTLP/HTTP per-signal variables, the
|
|
// URL MUST be used as-is without any modification. The only
|
|
// exception is that if an URL contains no path part, the root
|
|
// path / MUST be used.
|
|
path := u.Path
|
|
if path == "" {
|
|
path = "/"
|
|
}
|
|
cfg.Traces.URLPath = path
|
|
return cfg
|
|
}, withEndpointForGRPC(u)))
|
|
}),
|
|
envconfig.WithTLSConfig("CERTIFICATE", func(c *tls.Config) { opts = append(opts, WithTLSClientConfig(c)) }),
|
|
envconfig.WithTLSConfig("TRACES_CERTIFICATE", func(c *tls.Config) { opts = append(opts, WithTLSClientConfig(c)) }),
|
|
envconfig.WithHeaders("HEADERS", func(h map[string]string) { opts = append(opts, WithHeaders(h)) }),
|
|
envconfig.WithHeaders("TRACES_HEADERS", func(h map[string]string) { opts = append(opts, WithHeaders(h)) }),
|
|
WithEnvCompression("COMPRESSION", func(c Compression) { opts = append(opts, WithCompression(c)) }),
|
|
WithEnvCompression("TRACES_COMPRESSION", func(c Compression) { opts = append(opts, WithCompression(c)) }),
|
|
envconfig.WithDuration("TIMEOUT", func(d time.Duration) { opts = append(opts, WithTimeout(d)) }),
|
|
envconfig.WithDuration("TRACES_TIMEOUT", func(d time.Duration) { opts = append(opts, WithTimeout(d)) }),
|
|
)
|
|
|
|
return opts
|
|
}
|
|
|
|
func withEndpointScheme(u *url.URL) GenericOption {
|
|
switch strings.ToLower(u.Scheme) {
|
|
case "http", "unix":
|
|
return WithInsecure()
|
|
default:
|
|
return WithSecure()
|
|
}
|
|
}
|
|
|
|
func withEndpointForGRPC(u *url.URL) func(cfg Config) Config {
|
|
return func(cfg Config) Config {
|
|
// For OTLP/gRPC endpoints, this is the target to which the
|
|
// exporter is going to send telemetry.
|
|
cfg.Traces.Endpoint = path.Join(u.Host, u.Path)
|
|
return cfg
|
|
}
|
|
}
|
|
|
|
// WithEnvCompression retrieves the specified config and passes it to ConfigFn as a Compression
|
|
func WithEnvCompression(n string, fn func(Compression)) func(e *envconfig.EnvOptionsReader) {
|
|
return func(e *envconfig.EnvOptionsReader) {
|
|
if v, ok := e.GetEnvValue(n); ok {
|
|
cp := NoCompression
|
|
switch v {
|
|
case "gzip":
|
|
cp = GzipCompression
|
|
}
|
|
|
|
fn(cp)
|
|
}
|
|
}
|
|
}
|