Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wojciech-zurek/rrtop
Redis monitoring (top like) app. rrtop -> [r]ust [r]edis [top]
https://github.com/wojciech-zurek/rrtop
monitoring redis redis-client redis-database redis-server rrtop rust stats top tui-rs
Last synced: about 2 months ago
JSON representation
Redis monitoring (top like) app. rrtop -> [r]ust [r]edis [top]
- Host: GitHub
- URL: https://github.com/wojciech-zurek/rrtop
- Owner: wojciech-zurek
- License: mit
- Created: 2021-06-21T16:16:10.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-05T15:46:23.000Z (over 3 years ago)
- Last Synced: 2024-08-02T16:05:12.490Z (5 months ago)
- Topics: monitoring, redis, redis-client, redis-database, redis-server, rrtop, rust, stats, top, tui-rs
- Language: Rust
- Homepage:
- Size: 1.01 MB
- Stars: 29
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ratatui - rrtop - Redis monitoring (top like) app. rrtop -> \[r\]ust \[r\]edis \[top\]. (π» Apps / π Networking and Internet)
README
# rrtop
[r]ust [r]edis [top]
### Tool for monitoring redis server.
### Screenshots:
blackbird color scheme
![rrtop](shots/rrtop1.png "rrtop1")
one dark color scheme
![rrtop](shots/rrtop5.png "rrtop5")### Install:
Fetch the [latest release][]
#### Install (linux x86_64)
```fish
sudo wget https://github.com/wojciech-zurek/rrtop/releases/download/v0.1.0/rrtop-x86_64-unknown-linux-gnu -O /usr/local/bin/rrtop
sudo chmod +x /usr/local/bin/rrtop
```#### Install (linux arm64)
```fish
sudo wget https://github.com/wojciech-zurek/rrtop/releases/download/v0.1.0/rrtop-aarch64-unknown-linux-gnu -O /usr/local/bin/rrtop
sudo chmod +x /usr/local/bin/rrtop
```#### Install (aarch64-linux-android, termux, tested on Gemini PDA)
```fish
wget https://github.com/wojciech-zurek/rrtop/releases/download/v0.1.0/rrtop-aarch64-linux-android -O $HOME/../usr/bin/rrtop
chmod +x $HOME/../usr/bin/rrtop
```#### Install (windows x86_64)
Fetch windows version: [windows release][]
#### Clone, self-build, run (linux):
```fish
git clone [email protected]:wojciech-zurek/rrtop.gitcd rrtop
RUSTFLAGS="-C target-cpu=native" cargo build --release
sudo cp target/release/rrtop /bin/rrtop
rrtop --help
```
### Features:
rrtop is an application that allows you to monitor your redis server.
- latency,
- uptime,
- server version,
- pid,
- role,
- cpu sys utilization,
- cpu user utilization,
- op/s,
- total commands,
- network usage:
- total rx,
- rx/s,
- total tx,
- tx/s.
- memory usage:
- max memory,
- used memory,
- rss memory,
- fragmentation ratio.
- hit rate,
- total keys number,
- keys to expire,
- keys expired/s,
- evicted keys/s,
- command stats (with ratio), sort by:
- call,
- usec,
- usec per call.
- slow log:
- id,
- time,
- exec time,
- command,
- client ip/socket file,
- client name (if set).
- raw info.### Project status:
- alpha (more testing needed),
- ui - layout, widgets may change in the future.### Requirements:
- rust (for self compiling/building),
- redis :),
- modern terminal (like tilix) with true colors support,
- min terminal size: 60x13 (more is better).### Supported redis version:
- 5
- 6Other versions not tested.
### Usage:
```fish
rrtop 0.1.0
Wojciech Ε»urek
[R]ust [R]edis [Top] - tool for monitoring redis server.USAGE:
rrtop [OPTIONS]FLAGS:
--help Prints help information
-V, --version Prints version informationOPTIONS:
-c Color scheme. [default: default] [possible values: blackbird, bw,
default, dracula, nord, one-dark, solarized-dark]
-t Connection timeout in seconds [default: 5]
-d Draw background [default: true]
-f Set file log path
-h Server hostname. [default: 127.0.0.1]
-a Password to use when connecting to the server.
-p Server port. [default: 6379]
-s Server socket (overrides hostname and port).
-r Tick rate in seconds. Be careful. [default: 2.0]
-u User name to use when connecting to the server.
-w Worker number. Be careful. [default: 1]
```### How to connect:
#### via tcp:
```fish
# default host and port
rrtop# custom host and port
rrtop -h 192.168.2.2 -p 6379# custom host, port and password
rrtop -h 192.168.2.2 -p 6379 -a 123456# custom user and password
rrtop -u test -a 123456
```#### via unix socket:
```
# simple usage
rrtop -s path/to/socket/file# custom password
rrtop -s path/to/socket/file -a 123456
```### Supported color schemes:
- blackbird.
- bw,
- default,
- dracula,
- nord,
- one-dark,
- solarized-dark#### How to change color scheme:
```
# use -c option
rrtop -c blackbird
```### Todo:
- fix bugs :), optimize code, clean code,
- support REDISCLI_AUTH for password auth,
- more test,
- support more metrics,
- support more themes### Known issues:
- no windows test,
- no mac os test### More screenshots
nord color scheme
![rrtop](shots/rrtop2.png "rrtop2")
dracula color scheme
![rrtop](shots/rrtop3.png "rrtop3")
solarized dark color scheme
![rrtop](shots/rrtop4.png "rrtop4")
raw info
![rrtop](shots/rrtop6.png "rrtop6")
android, termux
![rrtop](shots/rrtop7.png "rrtop7")#### Some inspiration came from:
- bpytop,
- ytop,
- redis-stat### License
MIT see [LICENSE][] for the full license text.
[LICENSE]: https://github.com/wojciech-zurek/rrtop/blob/master/LICENSE
[latest release]: https://github.com/wojciech-zurek/rrtop/releases
[windows release]: https://github.com/wojciech-zurek/rrtop/releases/download/v0.1.0/rrtop-x86_64-pc-windows-gnu.exe