status-go/vendor/github.com/elastic/gosigar
Prem Chaitanya Prathi 97db14083a
chore_: bump go-waku with filter loop fix (#5909)
* chore_: bump go-waku with filter loop fix

* fix_: correct fleet node for staging fleet

* fix_: use shards for lightclient init

---------

Co-authored-by: Richard Ramos <info@richardramos.me>
2024-10-10 17:03:36 +05:30
..
sys/windows feat: wakuv2 store (#2780) 2022-08-19 12:34:07 -04:00
.gitignore Upgrade geth 2021-07-20 10:57:38 +02:00
CHANGELOG.md chore_: bump go-waku with filter loop fix (#5909) 2024-10-10 17:03:36 +05:30
LICENSE Upgrade geth 2021-07-20 10:57:38 +02:00
NOTICE Upgrade geth 2021-07-20 10:57:38 +02:00
README.md chore_: bump go-waku with filter loop fix (#5909) 2024-10-10 17:03:36 +05:30
Vagrantfile Upgrade geth 2021-07-20 10:57:38 +02:00
codecov.yml Upgrade geth 2021-07-20 10:57:38 +02:00
concrete_sigar.go Upgrade geth 2021-07-20 10:57:38 +02:00
sigar_aix.go Upgrade geth 2021-07-20 10:57:38 +02:00
sigar_common_darwin.go chore_: bump go-waku with filter loop fix (#5909) 2024-10-10 17:03:36 +05:30
sigar_darwin.go Upgrade geth 2021-07-20 10:57:38 +02:00
sigar_darwin_386.go Upgrade geth 2021-07-20 10:57:38 +02:00
sigar_format.go Upgrade geth 2021-07-20 10:57:38 +02:00
sigar_freebsd.go Upgrade geth 2021-07-20 10:57:38 +02:00
sigar_interface.go Upgrade geth 2021-07-20 10:57:38 +02:00
sigar_linux.go Upgrade geth 2021-07-20 10:57:38 +02:00
sigar_linux_common.go Upgrade geth 2021-07-20 10:57:38 +02:00
sigar_openbsd.go Upgrade geth 2021-07-20 10:57:38 +02:00
sigar_stub.go Upgrade geth 2021-07-20 10:57:38 +02:00
sigar_unix.go Upgrade geth 2021-07-20 10:57:38 +02:00
sigar_util.go Upgrade geth 2021-07-20 10:57:38 +02:00
sigar_windows.go feat: wakuv2 store (#2780) 2022-08-19 12:34:07 -04:00

README.md

Go sigar ci

Overview

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.

Test drive

$ go get github.com/elastic/gosigar
$ cd $GOPATH/src/github.com/elastic/gosigar/examples/ps
$ go build
$ ./ps

Supported platforms

The features vary by operating system.

Feature Linux Darwin Windows OpenBSD FreeBSD AIX
Cpu X X X X X X
CpuList X X X X X
FDUsage X X
FileSystemList X X X X X X
FileSystemUsage X X X X X X
HugeTLBPages X
LoadAverage X X X X X
Mem X X X X X X
ProcArgs X X X X X
ProcEnv X X X X
ProcExe X X X X
ProcFDUsage X X
ProcList X X X X X
ProcMem X X X X X
ProcState X X X X X
ProcTime X X X X X
Rusage X X X
Swap X X X X X
Uptime X X X X X

OS Specific Notes

FreeBSD

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

License

Apache 2.0