rtop
是一个简单的无代理的远程服务器监控工具,基于 SSH 连接进行工作。无需在被监控的服务器上安装任何软件。rtop 直接通过 SSH 连接到待监控服务器,然后执行命令来收集监控数据。
rtop 每几秒钟就自动更新监控数据,类似其他 *top 命令,如下图所示:
![image](http://static.oschina.net/uploads/img/201505/11070913_wirg.png)
rtop
可以通过私钥或者是账号密码方式连接到服务器:
<pre class="brush:shell;toolbar: true; auto-links: false;">rtop 1.0 - (c) 2015 RapidLoop - MIT Licensed - http://rtop-monitor.org
rtop monitors server statistics over an ssh connection
Usage: rtop [-i private-key-file] [user@]host[:port] [interval]
-i private-key-file
PEM-encoded private key file to use (default: ~/.ssh/id_rsa if present)
[user@]host[:port]
the SSH server to connect to, with optional username and port
interval
refresh interval in seconds (default: 5)</pre>
下载并构建:
<pre class="brush:shell;toolbar: true; auto-links: false;">git clone --recursive http://github.com/rapidloop/rtop
cd rtop
make</pre>