gotosocial/vendor/go.opentelemetry.io/otel/sdk/resource/host_id_linux.go

12 lines
264 B
Go
Raw Normal View History

2023-05-09 17:19:48 +00:00
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
2023-05-09 17:19:48 +00:00
//go:build linux
// +build linux
2023-05-09 17:19:48 +00:00
package resource // import "go.opentelemetry.io/otel/sdk/resource"
2023-05-09 17:19:48 +00:00
var platformHostIDReader hostIDReader = &hostIDReaderLinux{
readFile: readFile,
2023-05-09 17:19:48 +00:00
}