前言
Glances 是基于 Python 的开源跨平台的命令行监控工具,可提供有关系统性能的大量信息。可以监控内存和 CPU 利用率、网络带宽、磁盘 I/O、文件系统和正在运行的进程等等。
安装python3和pip3
1 2 3
| yum install python3 python3-pip -y apt install python3 python3-pip -y
|
pip3安装bottle和glances
1 2 3
| pip3 install bottle
pip3 install glances
|
使用
1 2 3
| glances glances -w ctrl + c
|
配置系统服务
1 2 3 4 5 6 7 8 9 10 11 12 13
| vim /etc/systemd/system/glances.service
[Unit] Description = Glances in Web Server Mode After = network.target
[Service] ExecStart = /usr/local/bin/glances -w -t 5
[Install] WantedBy = multi-user.target
|
系统服务命令
1 2 3 4 5 6 7 8
| systemctl enable glances.service
systemctl start glances.service
systemctl status glances.service
systemctl restart glances.service
|