Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evilsocket/uroboros
A GNU/Linux monitoring and profiling tool focused on single processes.
https://github.com/evilsocket/uroboros
Last synced: 6 days ago
JSON representation
A GNU/Linux monitoring and profiling tool focused on single processes.
- Host: GitHub
- URL: https://github.com/evilsocket/uroboros
- Owner: evilsocket
- License: other
- Created: 2020-12-28T16:21:56.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-14T17:42:51.000Z (about 3 years ago)
- Last Synced: 2024-12-03T11:51:36.614Z (10 days ago)
- Language: Go
- Size: 168 KB
- Stars: 673
- Watchers: 20
- Forks: 37
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-hacking-lists - evilsocket/uroboros - A GNU/Linux monitoring and profiling tool focused on single processes. (Go)
README
Uroboros is a GNU/Linux monitoring tool focused on single processes.
![Build and Test](https://github.com/evilsocket/uroboros/workflows/Build%20and%20Test/badge.svg)
While
utilities like top, ps and htop provide great overall details, they often lack useful temporal representation for
specific processes, such visual representation of the process data points can be used to profile, debug and
generally monitor its good health. There are tools like psrecord that can record some of the
activity of a process, but some graphical server is required for rendering, and it's neither complete nor realtime.Uroboros aims to fill this gap by providing a single tool to record, replay and render in realtime process
runtime information in the terminal, without affecting the process performances like more invasive ptrace based
solutions
would do.[![click here for a video](https://asciinema.org/a/382091.png)](https://asciinema.org/a/382091)
**Work in progress**
## Usage
For the moment there are no binary releases and building from sources is the only way (requires the go compiler,
will install the binary in $GOPATH/bin):# make sure go modules are used
GO111MODULE=on go get github.com/evilsocket/uroboros/cmd/uroTo monitor by pid:
sudo uro -pid 1234
To search by process name:
sudo uro -search test-process
Only show a subset of tabs:
sudo uro -pid 1234 -tabs "cpu, mem, io"
To save a recording on disk:
sudo uro -pid 1234 -record /tmp/process-activity.dat
To play a recording from disk (works on any OS and does not require sudo):
uro -replay /tmp/process-activity.dat
For more options:
uro -help### Keybindings
| Key | Action |
| :----------------------: | ---------------------------------------------------------- |
| <Right> | Show the next tab view. |
| <Left> | Show the previous tab view. |
| <Down> | Scroll down tables. |
| <Up> | Scroll up tables. |
| j | Scroll down lists. |
| k | Scroll up lists. |
| <Enter> | Select list elements. |
| p | Pause (default and replay modes). |
| f | Fast forward (replay mode). |
| q / <C-c> | Quit uro. |## License
Released under the GPL3 license.