1// Copyright The OpenTelemetry Authors
2// SPDX-License-Identifier: Apache-2.0
3
4/*
5Package sdk provides an auto-instrumentable OpenTelemetry SDK.
6
7An [go.opentelemetry.io/auto.Instrumentation] can be configured to target the
8process running this SDK. In that case, all telemetry the SDK produces will be
9processed and handled by that [go.opentelemetry.io/auto.Instrumentation].
10
11By default, if there is no [go.opentelemetry.io/auto.Instrumentation] set to
12auto-instrument the SDK, the SDK will not generate any telemetry.
13*/
14package sdk