2023-05-09 17:19:48 +00:00
|
|
|
// Copyright The OpenTelemetry Authors
|
2024-04-11 09:46:18 +00:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2023-05-09 17:19:48 +00:00
|
|
|
|
|
|
|
package resource // import "go.opentelemetry.io/otel/sdk/resource"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
2023-11-13 10:08:02 +00:00
|
|
|
// ErrPartialResource is returned by a detector when complete source
|
|
|
|
// information for a Resource is unavailable or the source information
|
|
|
|
// contains invalid values that are omitted from the returned Resource.
|
|
|
|
var ErrPartialResource = errors.New("partial resource")
|
2023-05-09 17:19:48 +00:00
|
|
|
|
|
|
|
// Detector detects OpenTelemetry resource information.
|
|
|
|
type Detector interface {
|
|
|
|
// DO NOT CHANGE: any modification will not be backwards compatible and
|
|
|
|
// must never be done outside of a new major release.
|
|
|
|
|
|
|
|
// Detect returns an initialized Resource based on gathered information.
|
|
|
|
// If the source information to construct a Resource contains invalid
|
|
|
|
// values, a Resource is returned with the valid parts of the source
|
|
|
|
// information used for initialization along with an appropriately
|
|
|
|
// wrapped ErrPartialResource error.
|
|
|
|
Detect(ctx context.Context) (*Resource, error)
|
|
|
|
// DO NOT CHANGE: any modification will not be backwards compatible and
|
|
|
|
// must never be done outside of a new major release.
|
|
|
|
}
|
|
|
|
|
2024-03-11 14:34:34 +00:00
|
|
|
// Detect returns a new [Resource] merged from all the Resources each of the
|
|
|
|
// detectors produces. Each of the detectors are called sequentially, in the
|
|
|
|
// order they are passed, merging the produced resource into the previous.
|
|
|
|
//
|
|
|
|
// This may return a partial Resource along with an error containing
|
|
|
|
// [ErrPartialResource] if that error is returned from a detector. It may also
|
|
|
|
// return a merge-conflicting Resource along with an error containing
|
|
|
|
// [ErrSchemaURLConflict] if merging Resources from different detectors results
|
|
|
|
// in a schema URL conflict. It is up to the caller to determine if this
|
|
|
|
// returned Resource should be used or not.
|
|
|
|
//
|
|
|
|
// If one of the detectors returns an error that is not [ErrPartialResource],
|
|
|
|
// the resource produced by the detector will not be merged and the returned
|
|
|
|
// error will wrap that detector's error.
|
2023-05-09 17:19:48 +00:00
|
|
|
func Detect(ctx context.Context, detectors ...Detector) (*Resource, error) {
|
2023-06-05 08:15:05 +00:00
|
|
|
r := new(Resource)
|
|
|
|
return r, detect(ctx, r, detectors)
|
|
|
|
}
|
|
|
|
|
|
|
|
// detect runs all detectors using ctx and merges the result into res. This
|
|
|
|
// assumes res is allocated and not nil, it will panic otherwise.
|
2024-03-11 14:34:34 +00:00
|
|
|
//
|
|
|
|
// If the detectors or merging resources produces any errors (i.e.
|
|
|
|
// [ErrPartialResource] [ErrSchemaURLConflict]), a single error wrapping all of
|
|
|
|
// these errors will be returned. Otherwise, nil is returned.
|
2023-06-05 08:15:05 +00:00
|
|
|
func detect(ctx context.Context, res *Resource, detectors []Detector) error {
|
|
|
|
var (
|
2024-11-11 15:16:41 +00:00
|
|
|
r *Resource
|
|
|
|
err error
|
|
|
|
e error
|
2023-06-05 08:15:05 +00:00
|
|
|
)
|
|
|
|
|
2023-05-09 17:19:48 +00:00
|
|
|
for _, detector := range detectors {
|
|
|
|
if detector == nil {
|
|
|
|
continue
|
|
|
|
}
|
2024-11-11 15:16:41 +00:00
|
|
|
r, e = detector.Detect(ctx)
|
|
|
|
if e != nil {
|
|
|
|
err = errors.Join(err, e)
|
|
|
|
if !errors.Is(e, ErrPartialResource) {
|
2023-05-09 17:19:48 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
2024-11-11 15:16:41 +00:00
|
|
|
r, e = Merge(res, r)
|
|
|
|
if e != nil {
|
|
|
|
err = errors.Join(err, e)
|
2023-05-09 17:19:48 +00:00
|
|
|
}
|
2023-06-05 08:15:05 +00:00
|
|
|
*res = *r
|
2023-05-09 17:19:48 +00:00
|
|
|
}
|
|
|
|
|
2024-11-11 15:16:41 +00:00
|
|
|
if err != nil {
|
|
|
|
if errors.Is(err, ErrSchemaURLConflict) {
|
|
|
|
// If there has been a merge conflict, ensure the resource has no
|
|
|
|
// schema URL.
|
|
|
|
res.schemaURL = ""
|
|
|
|
}
|
2023-06-05 08:15:05 +00:00
|
|
|
|
2024-11-11 15:16:41 +00:00
|
|
|
err = fmt.Errorf("error detecting resource: %w", err)
|
2023-06-05 08:15:05 +00:00
|
|
|
}
|
2024-11-11 15:16:41 +00:00
|
|
|
return err
|
2023-05-09 17:19:48 +00:00
|
|
|
}
|