https://github.com/mudler/gosigar
Gathers system and per process statistics
https://github.com/mudler/gosigar
Last synced: 6 months ago
JSON representation
Gathers system and per process statistics
- Host: GitHub
- URL: https://github.com/mudler/gosigar
- Owner: mudler
- License: apache-2.0
- Fork: true (elastic/gosigar)
- Created: 2022-05-02T19:59:30.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-02T20:23:49.000Z (about 4 years ago)
- Last Synced: 2024-05-09T20:57:51.160Z (about 2 years ago)
- Language: Go
- Homepage:
- Size: 408 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Go sigar [](https://beats-ci.elastic.co/job/Beats/job/gosigar/job/master/)
## Overview
Go sigar is a golang implementation of the
[sigar API](https://github.com/hyperic/sigar). 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