doc.go raw

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