2018-04-12 01:51:51 +08:00
< div align = "center" >
2018-02-19 15:25:02 +08:00
2019-05-30 06:07:01 +08:00
< a href = "./assets/logo" >
< img src = "./assets/logo/logo.png" width = "20%" / >
< / a >
2018-04-16 07:28:47 +08:00
< br > < br >
Another terminal based graphical activity monitor, inspired by [gtop ](https://github.com/aksakalli/gtop ) and [vtop ](https://github.com/MrRio/vtop ), this time written in [Go ](https://golang.org/ )!
2018-02-19 15:25:02 +08:00
2020-02-14 06:26:28 +08:00
The original author of gotop has re-implemented the application in Rust, as [ytop ](https://github.com/cjbassi/ytop ). This is a fork of original gotop project with a new maintainer.
2020-02-23 22:13:43 +08:00
< img src = "./assets/screenshots/demo.gif" / >
< img src = "./assets/screenshots/kitchensink.gif" / >
2018-03-05 13:19:31 +08:00
2018-04-16 07:28:47 +08:00
< / div >
2018-02-19 15:25:02 +08:00
## Installation
2019-05-30 06:07:01 +08:00
Working and tested on Linux, FreeBSD and macOS. Windows support is planned. OpenBSD works with some caveats.
2018-04-16 07:36:45 +08:00
2019-01-17 13:00:38 +08:00
### Source
```bash
2020-02-29 05:03:04 +08:00
go get github.com/xxxserxxx/gotop/cmd/gotop
2019-01-17 13:00:38 +08:00
```
2019-01-17 06:57:54 +08:00
### Prebuilt binaries
2018-02-19 15:25:02 +08:00
2019-01-17 06:02:54 +08:00
**Note**: Doesn't require Go.
2020-02-14 06:26:28 +08:00
Visit [here ](https://github.com/xxxserxxx/gotop/releases ) with your web browser and download a version that works for you.
2018-05-24 12:51:33 +08:00
2020-02-14 06:26:28 +08:00
Unzip it and then move `gotop` into your `$PATH` somewhere. If you're on a Debian or Redhat derivative, you can download an `.rpm` or `.deb` to install.
2019-04-26 09:00:25 +08:00
2020-02-21 00:05:58 +08:00
### Building
The easiest way is to
```
2020-02-29 05:03:04 +08:00
go get github.com/xxxserxxx/gotop/cmd/gotop
2020-02-21 00:05:58 +08:00
```
To create the cross-compile builds, there's a `make.sh` script; it has a lot of dependencies and has only been tested on my computer. When it works, it creates archives for numerous OSes & architectures. There's no testing for whether dependencies are available; it assumes they are and will fail in strange ways when they aren't.
- bash
- Go
- zip
- nfpm (for deb & rpm)
- docker (for darwin)
It is *just* smart enough to not rebuild things when it doesn't have to, and it tries to keep the darwin docker container around so it's not building from scratch every time. There are no guarantees.
2018-02-21 10:57:18 +08:00
## Usage
### Keybinds
2018-02-19 15:25:02 +08:00
2018-08-17 07:29:31 +08:00
- Quit: `q` or `<C-c>`
2019-06-01 10:58:29 +08:00
- Process navigation:
2018-11-30 10:17:13 +08:00
- `k` and `<Up>` : up
2019-06-04 05:13:31 +08:00
- `j` and `<Down>` : down
2018-11-30 10:17:13 +08:00
- `<C-u>` : half page up
- `<C-d>` : half page down
- `<C-b>` : full page up
- `<C-f>` : full page down
- `gg` and `<Home>` : jump to top
- `G` and `<End>` : jump to bottom
- Process actions:
- `<Tab>` : toggle process grouping
2020-02-14 06:26:28 +08:00
- `dd` : kill selected process or group of processes with SIGTERM
- `d3` : kill selected process or group of processes with SIGQUIT
- `d9` : kill selected process or group of processes with SIGKILL
2018-11-30 10:17:13 +08:00
- Process sorting
2018-08-17 07:29:31 +08:00
- `c` : CPU
- `m` : Mem
- `p` : PID
2019-06-01 10:58:29 +08:00
- Process filtering:
2019-06-04 05:13:31 +08:00
- `/` : start editing filter
2019-06-04 06:36:01 +08:00
- (while editing):
- `<Enter>` accept filter
- `<C-c>` and `<Escape>` : clear filter
2018-11-30 10:17:13 +08:00
- CPU and Mem graph scaling:
- `h` : scale in
- `l` : scale out
2018-08-17 07:29:31 +08:00
- `?` : toggles keybind help menu
2018-05-11 15:56:44 +08:00
2018-02-21 11:03:53 +08:00
### Mouse
2018-02-19 15:25:02 +08:00
2018-08-17 07:29:31 +08:00
- click to select process
- mouse wheel to scroll through processes
2018-02-19 15:25:02 +08:00
2018-03-10 05:36:54 +08:00
### Colorschemes
2018-02-19 15:25:02 +08:00
2018-12-23 11:18:32 +08:00
gotop ships with a few colorschemes which can be set with the `-c` flag followed by the name of one. You can find all the colorschemes in the [colorschemes folder ](./colorschemes ).
2018-09-19 04:42:49 +08:00
2019-02-16 18:11:05 +08:00
To make a custom colorscheme, check out the [template ](./colorschemes/template.go ) for instructions and then use [default.json ](./colorschemes/default.json ) as a starter. Then put the file at `~/.config/gotop/<name>.json` and load it with `gotop -c <name>` . Colorschemes PR's are welcome!
2018-05-11 15:56:44 +08:00
2020-02-14 00:37:11 +08:00
### Layouts
gotop can parse and render layouts from a specification file. The format is
intentionally simple. The amount of nesting levels is limited. Some examples
are in the `layouts` directory; you can try each of these with, e.g.,
`gotop --layout-file layouts/procs` . If you stick your layouts in
`$XDG_CONFIG_HOME/gotop` , you can reference them on the command line with the
`-l` argument, e.g. `gotop -l procs` .
The syntax for each widget in a row is:
```
(rowspan:)?widget(/weight)?
```
and these are separated by spaces.
1. Each line is a row
2. Empty lines are skipped
3. Spaces are compressed (so you can do limited visual formatting)
4. Legal widget names are: cpu, disk, mem, temp, batt, net, procs
5. Widget names are not case sensitive
4. The simplest row is a single widget, by name, e.g.
```
cpu
```
5. **Weights**
1. Widgets with no weights have a weight of 1.
2. If multiple widgets are put on a row with no weights, they will all have
the same width.
3. Weights are integers
4. A widget will have a width proportional to its weight divided by the
total weight count of the row. E.g.,
```
cpu net
disk/2 mem/4
```
The first row will have two widgets: the CPU and network widgets; each
will be 50% of the total width wide. The second row will have two
widgets: disk and memory; the first will be 2/6 ~= 33% wide, and the
second will be 5/7 ~= 67% wide (or, memory will be twice as wide as disk).
9. If prefixed by a number and colon, the widget will span that number of
rows downward. E.g.
```
mem 2:cpu
net
```
Here, memory and network will be in the same row as CPU, one over the other,
and each half as high as CPU; it'll look like this:
```
+------+------+
| Mem | |
+------+ CPU |
| Net | |
+------+------+
```
10. Negative, 0, or non-integer weights will be recorded as "1". Same for row
spans.
11. Unrecognized widget names will cause the application to abort.
12. In rows with multi-row spanning widgets **and** weights, weights in
lower rows are ignored. Put the weight on the widgets in that row, not
in later (spanned) rows.
13. Widgets are filled in top down, left-to-right order.
14. The larges row span in a row defines the top-level row span; all smaller
row spans constitude sub-rows in the row. For example, `cpu mem/3 net/5`
means that net/5 will be 5 rows tall overall, and mem will compose 3 of
them. If following rows do not have enough widgets to fill the gaps,
spacers will be used.
Yes, you're clever enough to break the layout algorithm, but if you try to
build massive edifices, you're in for disappointment.
2018-03-10 05:36:54 +08:00
### CLI Options
2018-08-17 07:29:31 +08:00
`-c` , `--color=NAME` Set a colorscheme.
2020-02-23 22:13:43 +08:00
`-m` , `--minimal` Only show CPU, Mem and Process widgets. (DEPRECATED, use `-l minimal` )
2018-08-17 07:29:31 +08:00
`-r` , `--rate=RATE` Number of times per second to update CPU and Mem widgets [default: 1].
2019-02-16 17:56:35 +08:00
`-V` , `--version` Print version and exit.
2018-09-19 07:39:41 +08:00
`-p` , `--percpu` Show each CPU in the CPU widget.
2019-01-05 01:51:31 +08:00
`-a` , `--averagecpu` Show average CPU in the CPU widget.
2019-09-27 07:01:02 +08:00
`-f` , `--fahrenheit` Show temperatures in fahrenheit.
2019-01-05 01:51:31 +08:00
`-s` , `--statusbar` Show a statusbar with the time.
2020-02-23 22:13:43 +08:00
`-b` , `--battery` Show battery level widget (`minimal` turns off). (DEPRECATED, use `-l battery` )
`-i` , `--interface=NAME` Select network interface [default: all].
2020-02-14 03:45:16 +08:00
`-l` , `--layout=NAME` Choose a layout. gotop searches for a file by NAME in \$XDG_CONFIG_HOME/gotop, then relative to the current path. "-" reads a layout from stdin, allowing for simple, one-off layouts such as `echo net | gotop -l -`
2018-04-12 02:23:19 +08:00
2019-09-10 02:46:34 +08:00
Several interfaces can be defined using comma separated values.
Interfaces can also be ignored using `!`
2020-02-23 22:13:43 +08:00
## More screen shots
#### "-l battery"
< img src = "./assets/screenshots/battery.png" / >
#### "-l minimal"
< img src = "./assets/screenshots/minimal.png" / >
#### Custom (layouts/procs)
< img src = "./assets/screenshots/procs.png" / >
2018-04-14 08:02:10 +08:00
## Built With
2019-01-01 08:55:50 +08:00
- [gizak/termui ](https://github.com/gizak/termui )
2019-09-27 07:01:02 +08:00
- [nsf/termbox ](https://github.com/nsf/termbox-go )
2019-01-01 08:55:50 +08:00
- [exrook/drawille-go ](https://github.com/exrook/drawille-go )
- [shirou/gopsutil ](https://github.com/shirou/gopsutil )
2019-02-07 11:23:56 +08:00
- [goreleaser/nfpm ](https://github.com/goreleaser/nfpm )
2019-01-05 01:51:31 +08:00
- [distatus/battery ](https://github.com/distatus/battery )