doc.go 536 B

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