You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-11-23 22:34:47 +02:00
This PR contains the following updates: | Package | Type | Update | Change | Age | Confidence | |---|---|---|---|---|---| | golang.org/x/exp | require | digest | `27f1f14` -> `90e834f` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | golang.org/x/exp/typeparams | indirect | digest | `27f1f14` -> `90e834f` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | golang.org/x/net | indirect | minor | `v0.45.0` -> `v0.46.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | golang.org/x/telemetry | indirect | digest | `ca0c2a9` -> `24f779f` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | golang.org/x/tools | require | minor | `v0.37.0` -> `v0.38.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-go). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQxLjE0My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Tyler Yahn <codingalias@gmail.com>
79 lines
2.1 KiB
Go
79 lines
2.1 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos
|
|
|
|
package resource // import "go.opentelemetry.io/otel/sdk/resource"
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
type unameProvider func(buf *unix.Utsname) (err error)
|
|
|
|
var defaultUnameProvider unameProvider = unix.Uname
|
|
|
|
var currentUnameProvider = defaultUnameProvider
|
|
|
|
func setDefaultUnameProvider() {
|
|
setUnameProvider(defaultUnameProvider)
|
|
}
|
|
|
|
func setUnameProvider(unameProvider unameProvider) {
|
|
currentUnameProvider = unameProvider
|
|
}
|
|
|
|
// platformOSDescription returns a human readable OS version information string.
|
|
// The final string combines OS release information (where available) and the
|
|
// result of the `uname` system call.
|
|
func platformOSDescription() (string, error) {
|
|
uname, err := uname()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
osRelease := osRelease()
|
|
if osRelease != "" {
|
|
return fmt.Sprintf("%s (%s)", osRelease, uname), nil
|
|
}
|
|
|
|
return uname, nil
|
|
}
|
|
|
|
// uname issues a uname(2) system call (or equivalent on systems which doesn't
|
|
// have one) and formats the output in a single string, similar to the output
|
|
// of the `uname` commandline program. The final string resembles the one
|
|
// obtained with a call to `uname -snrvm`.
|
|
func uname() (string, error) {
|
|
var utsName unix.Utsname
|
|
|
|
err := currentUnameProvider(&utsName)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return fmt.Sprintf("%s %s %s %s %s",
|
|
unix.ByteSliceToString(utsName.Sysname[:]),
|
|
unix.ByteSliceToString(utsName.Nodename[:]),
|
|
unix.ByteSliceToString(utsName.Release[:]),
|
|
unix.ByteSliceToString(utsName.Version[:]),
|
|
unix.ByteSliceToString(utsName.Machine[:]),
|
|
), nil
|
|
}
|
|
|
|
// getFirstAvailableFile returns an *os.File of the first available
|
|
// file from a list of candidate file paths.
|
|
func getFirstAvailableFile(candidates []string) (*os.File, error) {
|
|
for _, c := range candidates {
|
|
file, err := os.Open(c)
|
|
if err == nil {
|
|
return file, nil
|
|
}
|
|
}
|
|
|
|
return nil, fmt.Errorf("no candidate file available: %v", candidates)
|
|
}
|