| 123456789101112131415161718192021 |
- // Unless explicitly stated otherwise all files in this repository are licensed
- // under the Apache License Version 2.0.
- // This product includes software developed at Datadog (https://www.datadoghq.com/).
- // Copyright 2022 Datadog, Inc.
- // Package osinfo provides information about the current operating system release
- package osinfo
- // OSName returns the name of the operating system, including the distribution
- // for Linux when possible.
- func OSName() string {
- // call out to OS-specific implementation
- return osName()
- }
- // OSVersion returns the operating system release, e.g. major/minor version
- // number and build ID.
- func OSVersion() string {
- // call out to OS-specific implementation
- return osVersion()
- }
|