An open API service indexing awesome lists of open source software.

https://github.com/radovskyb/process

process is a simple Go package for working with unix processes.
https://github.com/radovskyb/process

Last synced: about 1 year ago
JSON representation

process is a simple Go package for working with unix processes.

Awesome Lists containing this project

README

          

# process
process is a simple Go package for working with unix processes.

For an example into what process is capable of doing, check out gobeat: https://github.com/radovskyb/gobeat.

# Features

- Find a process by `PID`.
- Find a process by name.
- Health check a process.
- Start a new process.
- Start a new process in a specified `tty`.
- Other small features plus more to come...

# Todo

- Add `Kill` method.
- Add `Restart` method.
- Write more tests.