-
Notifications
You must be signed in to change notification settings - Fork 582
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:open-telemetry/opentelemetry-go-con…
…trib into pool-metric-options # Conflicts: # CHANGELOG.md # instrumentation/net/http/otelhttp/internal/semconv/env_test.go
- Loading branch information
Showing
85 changed files
with
5,439 additions
and
695 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// Package config can be used to parse a configuration file | ||
// that follows the JSON Schema defined by the OpenTelemetry | ||
// Configuration schema. | ||
// Package config can be used to parse a configuration file that follows | ||
// the JSON Schema defined by the OpenTelemetry Configuration schema. Different | ||
// versions of the schema are supported by the code in the directory that | ||
// matches the version number of the schema. For example, the import | ||
// go.opentelemetry.io/contrib/config/v0.3.0 includes code that supports the | ||
// v0.3.0 release of the configuration schema. | ||
package config // import "go.opentelemetry.io/contrib/config" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package config // import "go.opentelemetry.io/contrib/config/v0.2.0" | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
|
||
"gopkg.in/yaml.v3" | ||
|
||
"go.opentelemetry.io/otel/log" | ||
nooplog "go.opentelemetry.io/otel/log/noop" | ||
"go.opentelemetry.io/otel/metric" | ||
noopmetric "go.opentelemetry.io/otel/metric/noop" | ||
"go.opentelemetry.io/otel/trace" | ||
nooptrace "go.opentelemetry.io/otel/trace/noop" | ||
) | ||
|
||
const ( | ||
protocolProtobufHTTP = "http/protobuf" | ||
protocolProtobufGRPC = "grpc/protobuf" | ||
|
||
compressionGzip = "gzip" | ||
compressionNone = "none" | ||
) | ||
|
||
type configOptions struct { | ||
ctx context.Context | ||
opentelemetryConfig OpenTelemetryConfiguration | ||
} | ||
|
||
type shutdownFunc func(context.Context) error | ||
|
||
func noopShutdown(context.Context) error { | ||
return nil | ||
} | ||
|
||
// SDK is a struct that contains all the providers | ||
// configured via the configuration model. | ||
type SDK struct { | ||
meterProvider metric.MeterProvider | ||
tracerProvider trace.TracerProvider | ||
loggerProvider log.LoggerProvider | ||
shutdown shutdownFunc | ||
} | ||
|
||
// TracerProvider returns a configured trace.TracerProvider. | ||
func (s *SDK) TracerProvider() trace.TracerProvider { | ||
return s.tracerProvider | ||
} | ||
|
||
// MeterProvider returns a configured metric.MeterProvider. | ||
func (s *SDK) MeterProvider() metric.MeterProvider { | ||
return s.meterProvider | ||
} | ||
|
||
// LoggerProvider returns a configured log.LoggerProvider. | ||
func (s *SDK) LoggerProvider() log.LoggerProvider { | ||
return s.loggerProvider | ||
} | ||
|
||
// Shutdown calls shutdown on all configured providers. | ||
func (s *SDK) Shutdown(ctx context.Context) error { | ||
return s.shutdown(ctx) | ||
} | ||
|
||
var noopSDK = SDK{ | ||
loggerProvider: nooplog.LoggerProvider{}, | ||
meterProvider: noopmetric.MeterProvider{}, | ||
tracerProvider: nooptrace.TracerProvider{}, | ||
shutdown: func(ctx context.Context) error { return nil }, | ||
} | ||
|
||
// NewSDK creates SDK providers based on the configuration model. | ||
func NewSDK(opts ...ConfigurationOption) (SDK, error) { | ||
o := configOptions{} | ||
for _, opt := range opts { | ||
o = opt.apply(o) | ||
} | ||
if o.opentelemetryConfig.Disabled != nil && *o.opentelemetryConfig.Disabled { | ||
return noopSDK, nil | ||
} | ||
|
||
r, err := newResource(o.opentelemetryConfig.Resource) | ||
if err != nil { | ||
return noopSDK, err | ||
} | ||
|
||
mp, mpShutdown, err := meterProvider(o, r) | ||
if err != nil { | ||
return noopSDK, err | ||
} | ||
|
||
tp, tpShutdown, err := tracerProvider(o, r) | ||
if err != nil { | ||
return noopSDK, err | ||
} | ||
|
||
lp, lpShutdown, err := loggerProvider(o, r) | ||
if err != nil { | ||
return noopSDK, err | ||
} | ||
|
||
return SDK{ | ||
meterProvider: mp, | ||
tracerProvider: tp, | ||
loggerProvider: lp, | ||
shutdown: func(ctx context.Context) error { | ||
return errors.Join(mpShutdown(ctx), tpShutdown(ctx), lpShutdown(ctx)) | ||
}, | ||
}, nil | ||
} | ||
|
||
// ConfigurationOption configures options for providers. | ||
type ConfigurationOption interface { | ||
apply(configOptions) configOptions | ||
} | ||
|
||
type configurationOptionFunc func(configOptions) configOptions | ||
|
||
func (fn configurationOptionFunc) apply(cfg configOptions) configOptions { | ||
return fn(cfg) | ||
} | ||
|
||
// WithContext sets the context.Context for the SDK. | ||
func WithContext(ctx context.Context) ConfigurationOption { | ||
return configurationOptionFunc(func(c configOptions) configOptions { | ||
c.ctx = ctx | ||
return c | ||
}) | ||
} | ||
|
||
// WithOpenTelemetryConfiguration sets the OpenTelemetryConfiguration used | ||
// to produce the SDK. | ||
func WithOpenTelemetryConfiguration(cfg OpenTelemetryConfiguration) ConfigurationOption { | ||
return configurationOptionFunc(func(c configOptions) configOptions { | ||
c.opentelemetryConfig = cfg | ||
return c | ||
}) | ||
} | ||
|
||
// ParseYAML parses a YAML configuration file into an OpenTelemetryConfiguration. | ||
func ParseYAML(file []byte) (*OpenTelemetryConfiguration, error) { | ||
var cfg OpenTelemetryConfiguration | ||
err := yaml.Unmarshal(file, &cfg) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &cfg, nil | ||
} |
Oops, something went wrong.