2017-05-13 18:42:29 +00:00
|
|
|
// Copyright 2017 The Prometheus 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.
|
|
|
|
|
2018-08-22 10:41:11 +00:00
|
|
|
package runtime
|
2017-05-13 18:42:29 +00:00
|
|
|
|
2022-07-30 17:35:03 +00:00
|
|
|
import "golang.org/x/sys/unix"
|
2017-05-13 18:42:29 +00:00
|
|
|
|
|
|
|
// Uname returns the uname of the host machine.
|
|
|
|
func Uname() string {
|
2019-08-21 09:27:21 +00:00
|
|
|
buf := unix.Utsname{}
|
|
|
|
err := unix.Uname(&buf)
|
2017-05-13 18:42:29 +00:00
|
|
|
if err != nil {
|
2019-08-21 09:27:21 +00:00
|
|
|
panic("unix.Uname failed: " + err.Error())
|
2017-05-13 18:42:29 +00:00
|
|
|
}
|
2017-05-16 16:44:11 +00:00
|
|
|
|
2022-07-30 17:35:03 +00:00
|
|
|
str := "(" + unix.ByteSliceToString(buf.Sysname[:])
|
|
|
|
str += " " + unix.ByteSliceToString(buf.Release[:])
|
|
|
|
str += " " + unix.ByteSliceToString(buf.Version[:])
|
|
|
|
str += " " + unix.ByteSliceToString(buf.Machine[:])
|
|
|
|
str += " " + unix.ByteSliceToString(buf.Nodename[:])
|
|
|
|
str += " " + unix.ByteSliceToString(buf.Domainname[:]) + ")"
|
2017-05-13 18:42:29 +00:00
|
|
|
return str
|
|
|
|
}
|