Gathers system and per process statistics(evacuated from NSA/Microsoft Github)
Anonymous 49a0c5b533 rebuild with dh-make-golang, work in progress 2 | vor 2 Jahren | |
---|---|---|
cgroup | vor 6 Jahren | |
debian | vor 2 Jahren | |
examples | vor 6 Jahren | |
fakes | vor 6 Jahren | |
old | vor 6 Jahren | |
psnotify | vor 6 Jahren | |
sys | vor 6 Jahren | |
.appveyor.yml | vor 7 Jahren | |
.gitignore | vor 7 Jahren | |
.travis.yml | vor 7 Jahren | |
LICENSE | vor 12 Jahren | |
NOTICE | vor 12 Jahren | |
README.md | vor 5 Jahren | |
Vagrantfile | vor 9 Jahren | |
codecov.yml | vor 7 Jahren | |
concrete_sigar.go | vor 6 Jahren | |
concrete_sigar_test.go | vor 6 Jahren | |
sigar_format.go | vor 5 Jahren | |
sigar_freebsd.go | vor 6 Jahren | |
sigar_interface.go | vor 6 Jahren | |
sigar_interface_test.go | vor 6 Jahren | |
sigar_linux.go | vor 6 Jahren | |
sigar_linux_common.go | vor 6 Jahren | |
sigar_linux_test.go | vor 6 Jahren | |
sigar_openbsd.go | vor 6 Jahren | |
sigar_stub.go | vor 6 Jahren | |
sigar_unix.go | vor 6 Jahren | |
sigar_util.go | vor 8 Jahren |
Go sigar is a golang implementation of the sigar API. The Go version of sigar has a very similar interface, but is being written from scratch in pure go/cgo, rather than cgo bindings for libsigar. This version of gosigar has been evacuated from the NSA/Microsoft walled garden.
$ cd examples
$ go run ps.go
The features vary by operating system.
Feature | Linux | OpenBSD | FreeBSD |
---|---|---|---|
Cpu | X | X | X |
CpuList | X | X | X |
FDUsage | X | X | |
FileSystemList | X | X | X |
FileSystemUsage | X | X | X |
HugeTLBPages | X | ||
LoadAverage | X | X | X |
Mem | X | X | X |
ProcArgs | X | X | |
ProcEnv | X | X | |
ProcExe | X | X | |
ProcFDUsage | X | X | |
ProcList | X | X | |
ProcMem | X | X | |
ProcState | X | X | |
ProcTime | X | X | |
Swap | X | X | X |
Uptime | X | X | X |
Mount both linprocfs
and procfs
for compatability. Consider adding these
mounts to your /etc/fstab
file so they are mounted automatically at boot.
sudo mount -t procfs proc /proc
sudo mkdir -p /compat/linux/proc
sudo mount -t linprocfs /dev/null /compat/linux/proc
Apache 2.0