blob: 543f2ffdfdd2fcd0c682d4173a22ff607c3a4412 (
plain) (
tree)
|
|
// 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 2016 Datadog, Inc.
package osinfo
import (
"os/exec"
"runtime"
"strings"
)
func osName() string {
return runtime.GOOS
}
func osVersion() string {
out, err := exec.Command("uname", "-r").Output()
if err != nil {
return "unknown"
}
return strings.Split(string(out), "-")[0]
}
|