2021-04-23 17:28:13 +02:00
|
|
|
// Copyright The OpenTelemetry Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package resource // import "go.opentelemetry.io/otel/sdk/resource"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"strings"
|
|
|
|
|
2021-06-10 19:03:43 +02:00
|
|
|
semconv "go.opentelemetry.io/otel/semconv/v1.4.0"
|
2021-04-23 17:28:13 +02:00
|
|
|
)
|
|
|
|
|
2021-07-08 22:35:27 +02:00
|
|
|
type osDescriptionProvider func() (string, error)
|
|
|
|
|
|
|
|
var defaultOSDescriptionProvider osDescriptionProvider = platformOSDescription
|
|
|
|
|
|
|
|
var osDescription = defaultOSDescriptionProvider
|
|
|
|
|
|
|
|
func setDefaultOSDescriptionProvider() {
|
|
|
|
setOSDescriptionProvider(defaultOSDescriptionProvider)
|
|
|
|
}
|
|
|
|
|
|
|
|
func setOSDescriptionProvider(osDescriptionProvider osDescriptionProvider) {
|
|
|
|
osDescription = osDescriptionProvider
|
|
|
|
}
|
|
|
|
|
2021-04-23 17:28:13 +02:00
|
|
|
type osTypeDetector struct{}
|
2021-07-08 22:35:27 +02:00
|
|
|
type osDescriptionDetector struct{}
|
2021-04-23 17:28:13 +02:00
|
|
|
|
|
|
|
// Detect returns a *Resource that describes the operating system type the
|
|
|
|
// service is running on.
|
|
|
|
func (osTypeDetector) Detect(ctx context.Context) (*Resource, error) {
|
|
|
|
osType := runtimeOS()
|
|
|
|
|
|
|
|
return NewWithAttributes(
|
2021-06-08 18:46:42 +02:00
|
|
|
semconv.SchemaURL,
|
2021-04-23 17:28:13 +02:00
|
|
|
semconv.OSTypeKey.String(strings.ToLower(osType)),
|
|
|
|
), nil
|
|
|
|
}
|
|
|
|
|
2021-07-08 22:35:27 +02:00
|
|
|
// Detect returns a *Resource that describes the operating system the
|
|
|
|
// service is running on.
|
|
|
|
func (osDescriptionDetector) Detect(ctx context.Context) (*Resource, error) {
|
|
|
|
description, err := osDescription()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return NewWithAttributes(
|
|
|
|
semconv.SchemaURL,
|
|
|
|
semconv.OSDescriptionKey.String(description),
|
|
|
|
), nil
|
|
|
|
}
|
|
|
|
|
2021-04-23 17:28:13 +02:00
|
|
|
// WithOSType adds an attribute with the operating system type to the configured Resource.
|
|
|
|
func WithOSType() Option {
|
|
|
|
return WithDetectors(osTypeDetector{})
|
|
|
|
}
|
2021-07-08 22:35:27 +02:00
|
|
|
|
|
|
|
// WithOSDescription adds an attribute with the operating system description to the
|
|
|
|
// configured Resource. The formatted string is equivalent to the output of the
|
|
|
|
// `uname -snrvm` command.
|
|
|
|
func WithOSDescription() Option {
|
|
|
|
return WithDetectors(osDescriptionDetector{})
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithOS adds all the OS attributes to the configured Resource.
|
|
|
|
// See individual WithOS* functions to configure specific attributes.
|
|
|
|
func WithOS() Option {
|
|
|
|
return WithDetectors(
|
|
|
|
osTypeDetector{},
|
|
|
|
osDescriptionDetector{},
|
|
|
|
)
|
|
|
|
}
|