mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-27 14:16:39 +00:00
bb8dfd3368
Bumps [go.opentelemetry.io/otel/sdk](https://github.com/open-telemetry/opentelemetry-go) from 1.29.0 to 1.32.0. - [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases) - [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md) - [Commits](https://github.com/open-telemetry/opentelemetry-go/compare/v1.29.0...v1.32.0) --- updated-dependencies: - dependency-name: go.opentelemetry.io/otel/sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
20 lines
617 B
Go
20 lines
617 B
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package instrumentation // import "go.opentelemetry.io/otel/sdk/instrumentation"
|
|
|
|
import "go.opentelemetry.io/otel/attribute"
|
|
|
|
// 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
|
|
// Attributes of the telemetry emitted by the scope.
|
|
Attributes attribute.Set
|
|
}
|