Extends uname collector to export on Darwin OS (#1433)
Adds uname collector support for Darwin and OpenBSD Signed-off-by: Philip Gough <philip.p.gough@gmail.com>
This commit is contained in:
parent
2f2392af3f
commit
2d95ecaa96
|
@ -57,7 +57,7 @@ stat | Exposes various statistics from `/proc/stat`. This includes boot time, fo
|
||||||
textfile | Exposes statistics read from local disk. The `--collector.textfile.directory` flag must be set. | _any_
|
textfile | Exposes statistics read from local disk. The `--collector.textfile.directory` flag must be set. | _any_
|
||||||
time | Exposes the current system time. | _any_
|
time | Exposes the current system time. | _any_
|
||||||
timex | Exposes selected adjtimex(2) system call stats. | Linux
|
timex | Exposes selected adjtimex(2) system call stats. | Linux
|
||||||
uname | Exposes system information as provided by the uname system call. | FreeBSD, Linux
|
uname | Exposes system information as provided by the uname system call. | Darwin, FreeBSD, Linux, OpenBSD
|
||||||
vmstat | Exposes statistics from `/proc/vmstat`. | Linux
|
vmstat | Exposes statistics from `/proc/vmstat`. | Linux
|
||||||
xfs | Exposes XFS runtime statistics. | Linux (kernel 4.4+)
|
xfs | Exposes XFS runtime statistics. | Linux (kernel 4.4+)
|
||||||
zfs | Exposes [ZFS](http://open-zfs.org/) performance statistics. | [Linux](http://zfsonlinux.org/), Solaris
|
zfs | Exposes [ZFS](http://open-zfs.org/) performance statistics. | [Linux](http://zfsonlinux.org/), Solaris
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// +build freebsd linux
|
// +build darwin freebsd openbsd linux
|
||||||
// +build !nouname
|
// +build !nouname
|
||||||
|
|
||||||
package collector
|
package collector
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
|
// +build darwin freebsd openbsd
|
||||||
// +build !nouname
|
// +build !nouname
|
||||||
|
|
||||||
package collector
|
package collector
|
||||||
|
@ -28,30 +29,35 @@ func getUname() (uname, error) {
|
||||||
return uname{}, err
|
return uname{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// We do a little bit of work here to emulate what happens in the Linux
|
nodeName, domainName := parseHostNameAndDomainName(utsname)
|
||||||
// uname calls since FreeBSD uname doesn't have a Domainname.
|
|
||||||
nodename := string(utsname.Nodename[:bytes.IndexByte(utsname.Nodename[:], 0)])
|
|
||||||
split := strings.SplitN(nodename, ".", 2)
|
|
||||||
|
|
||||||
// We'll always have at least a single element in the array. We assume this
|
|
||||||
// is the hostname.
|
|
||||||
hostname := split[0]
|
|
||||||
|
|
||||||
// If we have more than one element, we assume this is the domainname.
|
|
||||||
// Otherwise leave it to "(none)" like Linux.
|
|
||||||
domainname := "(none)"
|
|
||||||
if len(split) > 1 {
|
|
||||||
domainname = split[1]
|
|
||||||
}
|
|
||||||
|
|
||||||
output := uname{
|
output := uname{
|
||||||
SysName: string(utsname.Sysname[:bytes.IndexByte(utsname.Sysname[:], 0)]),
|
SysName: string(utsname.Sysname[:bytes.IndexByte(utsname.Sysname[:], 0)]),
|
||||||
Release: string(utsname.Release[:bytes.IndexByte(utsname.Release[:], 0)]),
|
Release: string(utsname.Release[:bytes.IndexByte(utsname.Release[:], 0)]),
|
||||||
Version: string(utsname.Version[:bytes.IndexByte(utsname.Version[:], 0)]),
|
Version: string(utsname.Version[:bytes.IndexByte(utsname.Version[:], 0)]),
|
||||||
Machine: string(utsname.Machine[:bytes.IndexByte(utsname.Machine[:], 0)]),
|
Machine: string(utsname.Machine[:bytes.IndexByte(utsname.Machine[:], 0)]),
|
||||||
NodeName: hostname,
|
NodeName: nodeName,
|
||||||
DomainName: domainname,
|
DomainName: domainName,
|
||||||
}
|
}
|
||||||
|
|
||||||
return output, nil
|
return output, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// parseHostNameAndDomainName for FreeBSD,OpenBSD,Darwin.
|
||||||
|
// Attempts to emulate what happens in the Linux uname calls since these OS doesn't have a Domainname.
|
||||||
|
func parseHostNameAndDomainName(utsname unix.Utsname) (hostname string, domainname string) {
|
||||||
|
nodename := string(utsname.Nodename[:bytes.IndexByte(utsname.Nodename[:], 0)])
|
||||||
|
split := strings.SplitN(nodename, ".", 2)
|
||||||
|
|
||||||
|
// We'll always have at least a single element in the array. We assume this
|
||||||
|
// is the hostname.
|
||||||
|
hostname = split[0]
|
||||||
|
|
||||||
|
// If we have more than one element, we assume this is the domainname.
|
||||||
|
// Otherwise leave it to "(none)" like Linux.
|
||||||
|
domainname = "(none)"
|
||||||
|
if len(split) > 1 {
|
||||||
|
domainname = split[1]
|
||||||
|
}
|
||||||
|
return hostname, domainname
|
||||||
|
}
|
Loading…
Reference in New Issue