linux的监控项

#内存监控
cat /proc/meminfo
#内核线程、虚拟内存、磁盘、陷阱和 CPU 活动的统计信息
vmstat 1 2 | tail -n 1
#cpu监控
cat /proc/cpuinfo
#负载均衡
[root@localhost ~]# cat /proc/loadavg
0.00 0.01 0.05 1/252 18819
print "系统5分钟前的平均负载:", loadavgs[0]
print "系统10分钟前的平均负载:", loadavgs[1]
print "系统15分钟前的平均负载:", loadavgs[2]
print "分子是正在运行的进程数,分母为总进程数:",loadavgs[3]
print "最近运行的进程id:", loadavgs[4]

#获取网络接口的输入和输出
cat /proc/net/dev
#查看端口及对应服务的pid
netstat -tpln
#cpu运行情况
cat /proc/stat

  

posted @ 2023-09-07 15:27  苍茫宇宙  阅读(16)  评论(0编辑  收藏  举报