serviceman/vendor/github.com/mitchellh/go-ps
AJ ONeal 4c44f70ec3 Windows: start on install. Add stop/start to all. 2019-07-10 01:18:06 -06:00
..
.gitignore Windows: start on install. Add stop/start to all. 2019-07-10 01:18:06 -06:00
.travis.yml Windows: start on install. Add stop/start to all. 2019-07-10 01:18:06 -06:00
LICENSE.md Windows: start on install. Add stop/start to all. 2019-07-10 01:18:06 -06:00
README.md Windows: start on install. Add stop/start to all. 2019-07-10 01:18:06 -06:00
Vagrantfile Windows: start on install. Add stop/start to all. 2019-07-10 01:18:06 -06:00
process.go Windows: start on install. Add stop/start to all. 2019-07-10 01:18:06 -06:00
process_darwin.go Windows: start on install. Add stop/start to all. 2019-07-10 01:18:06 -06:00
process_freebsd.go Windows: start on install. Add stop/start to all. 2019-07-10 01:18:06 -06:00
process_linux.go Windows: start on install. Add stop/start to all. 2019-07-10 01:18:06 -06:00
process_solaris.go Windows: start on install. Add stop/start to all. 2019-07-10 01:18:06 -06:00
process_unix.go Windows: start on install. Add stop/start to all. 2019-07-10 01:18:06 -06:00
process_windows.go Windows: start on install. Add stop/start to all. 2019-07-10 01:18:06 -06:00

README.md

Process List Library for Go

go-ps is a library for Go that implements OS-specific APIs to list and manipulate processes in a platform-safe way. The library can find and list processes on Linux, Mac OS X, Solaris, and Windows.

If you're new to Go, this library has a good amount of advanced Go educational value as well. It uses some advanced features of Go: build tags, accessing DLL methods for Windows, cgo for Darwin, etc.

How it works:

  • Darwin uses the sysctl syscall to retrieve the process table.
  • Unix uses the procfs at /proc to inspect the process tree.
  • Windows uses the Windows API, and methods such as CreateToolhelp32Snapshot to get a point-in-time snapshot of the process table.

Installation

Install using standard go get:

$ go get github.com/mitchellh/go-ps
...

TODO

Want to contribute? Here is a short TODO list of things that aren't implemented for this library that would be nice:

  • FreeBSD support
  • Plan9 support