You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-11-25 22:41:46 +02:00
Closes #7384 - Add sdk/internal/gen.go with gotmpl directives to generate x/x.go and x/x_test.go - Refactor sdk/internal/x/x.go to generic Feature[T] with multi-key support and Keys() - Move Resource feature into sdk/internal/x/features.go (case-insensitive true enables) - Add tests: generic feature tests in x_test.go and Resource tests in features_test.go - Aligns with sdk/log/internal/x pattern introduced in PR #7389 Internal note: replaces Key() with Keys() for internal Feature API. Build and lints pass --------- Co-authored-by: Damien Mathieu <42@dmathieu.com>
14 lines
414 B
Go
14 lines
414 B
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
/*
|
|
Package trace contains support for OpenTelemetry distributed tracing.
|
|
|
|
The following assumes a basic familiarity with OpenTelemetry concepts.
|
|
See https://opentelemetry.io.
|
|
|
|
See [go.opentelemetry.io/otel/sdk/internal/x] for information about
|
|
the experimental features.
|
|
*/
|
|
package trace // import "go.opentelemetry.io/otel/sdk/trace"
|