Simplify Utsname string conversion (#716)
* Update golang.org/x/sys/unix This allows to use simplified string conversion of Utsname members. * Simplify Utsname string conversion Use Utsname from golang.org/x/sys/unix which contains byte array instead of int8/uint8 array members. This allows to simplify the string conversions of these members.
This commit is contained in:
parent
ea250d73f4
commit
d73f1e60c4
123 changed files with 1958 additions and 538 deletions
|
|
@ -16,9 +16,11 @@
|
|||
package collector
|
||||
|
||||
import (
|
||||
"syscall"
|
||||
"bytes"
|
||||
|
||||
"github.com/prometheus/client_golang/prometheus"
|
||||
|
||||
"golang.org/x/sys/unix"
|
||||
)
|
||||
|
||||
var unameDesc = prometheus.NewDesc(
|
||||
|
|
@ -47,18 +49,18 @@ func newUnameCollector() (Collector, error) {
|
|||
}
|
||||
|
||||
func (c unameCollector) Update(ch chan<- prometheus.Metric) error {
|
||||
var uname syscall.Utsname
|
||||
if err := syscall.Uname(&uname); err != nil {
|
||||
var uname unix.Utsname
|
||||
if err := unix.Uname(&uname); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
ch <- prometheus.MustNewConstMetric(unameDesc, prometheus.GaugeValue, 1,
|
||||
unameToString(uname.Sysname),
|
||||
unameToString(uname.Release),
|
||||
unameToString(uname.Version),
|
||||
unameToString(uname.Machine),
|
||||
unameToString(uname.Nodename),
|
||||
unameToString(uname.Domainname),
|
||||
string(uname.Sysname[:bytes.IndexByte(uname.Sysname[:], 0)]),
|
||||
string(uname.Release[:bytes.IndexByte(uname.Release[:], 0)]),
|
||||
string(uname.Version[:bytes.IndexByte(uname.Version[:], 0)]),
|
||||
string(uname.Machine[:bytes.IndexByte(uname.Machine[:], 0)]),
|
||||
string(uname.Nodename[:bytes.IndexByte(uname.Nodename[:], 0)]),
|
||||
string(uname.Domainname[:bytes.IndexByte(uname.Domainname[:], 0)]),
|
||||
)
|
||||
return nil
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue