2021-08-09 12:49:24 +05:30
|
|
|
// Copyright The OpenTelemetry Authors
|
2024-08-19 10:01:33 +02:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2021-08-09 12:49:24 +05:30
|
|
|
|
2023-02-01 18:06:36 +01:00
|
|
|
package instrumentation // import "go.opentelemetry.io/otel/sdk/instrumentation"
|
2021-08-09 12:49:24 +05:30
|
|
|
|
2023-02-01 18:06:36 +01:00
|
|
|
// Scope represents the instrumentation scope.
|
|
|
|
type Scope struct {
|
|
|
|
// Name is the name of the instrumentation scope. This should be the
|
|
|
|
// Go package name of that scope.
|
|
|
|
Name string
|
|
|
|
// Version is the version of the instrumentation scope.
|
|
|
|
Version string
|
|
|
|
// SchemaURL of the telemetry emitted by the scope.
|
|
|
|
SchemaURL string
|
2021-08-09 12:49:24 +05:30
|
|
|
}
|