lin7sh / go-sysinfo

go-sysinfo is a library for collecting system information.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

go-sysinfo

Build Status Go Documentation

go-sysinfo is a library for collecting system information. This includes information about the host machine and processes running on the host.

The available features vary based on what has been implemented by the "provider" for the operating system. At runtime you check to see if additional interfaces are implemented by the returned Host or Process. For example:

process, err := sysinfo.Self()
if err != nil {
	return err
}

if handleCounter, ok := process.(types.OpenHandleCounter); ok {
	count, err := handleCounter.OpenHandleCount()
	if err != nil {
		return err
	}
	log.Printf("%d open handles", count)
}

These tables show what methods are implemented as well as the extra interfaces that are implemented.

Host Features Darwin Linux Windows AIX/ppc64
Info() x x x x
Memory() x x x x
CPUTimer x x x x
VMStat x
NetworkCounters x
Process Features Darwin Linux Windows AIX/ppc64
Info() x x x x
Memory() x x x x
User() x x x x
Parent() x x x x
CPUTimer x x x x
Environment x x x
OpenHandleEnumerator x
OpenHandleCounter x
Seccomp x
Capabilities x

About

go-sysinfo is a library for collecting system information.

License:Apache License 2.0


Languages

Language:Go 99.3%Language:Makefile 0.3%Language:Shell 0.2%Language:Batchfile 0.2%