python 监测内存和cpu的使用率实例
作者:ajiong314 时间:2022-07-03 23:49:49
我就废话不多说了,直接上代码吧!
import paramiko
import pymysql
import time
linux = ['192.168.0.179']
def connectHost(ip, uname='shenyuming', passwd='ajiongqqq'):
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(ip, username=uname, password=passwd,port=22)
return ssh
def MainCheck():
try:
while True:
time.sleep(1)
for a in range(len(linux)):
ssh = connectHost(linux[a])
# 查询主机名称
cmd = 'hostname'
stdin, stdout, stderr = ssh.exec_command(cmd)
host_name = stdout.readlines()
host_name = host_name[0]
# 查看当前时间
csj = 'date +%T'
stdin, stdout, stderr = ssh.exec_command(csj)
curr_time = stdout.readlines()
curr_time = curr_time[0]
# 查看cpu使用率,并将信息写入到数据库中(取三次平均值)
cpu = "vmstat 1 3|sed '1d'|sed '1d'|awk '{print $15}'"
stdin, stdout, stderr = ssh.exec_command(cpu)
cpu = stdout.readlines()
cpu_usage = str(round((100 - (int(cpu[0]) + int(cpu[1]) + int(cpu[2])) / 3), 2)) + '%'
# 查看内存使用率,并将信息写入到数据库中
mem = "cat /proc/meminfo|sed -n '1,4p'|awk '{print $2}'"
stdin, stdout, stderr = ssh.exec_command(mem)
mem = stdout.readlines()
mem_total = round(int(mem[0]) / 1024)
mem_total_free = round(int(mem[1]) / 1024) + round(int(mem[2]) / 1024) + round(int(mem[3]) / 1024)
mem_usage = str(round(((mem_total - mem_total_free) / mem_total) * 100, 2)) + "%"
sql = "insert into memory_and_cpu values('%s','%s','%s','%s')" % (
host_name, curr_time, cpu_usage, mem_usage)
db = connectDB()
sqlDML(sql, db)
except:
print("连接服务器 %s 异常" % (linux[a]))
def connectDB(dbname='test11'):
if dbname == 'test11':
db = pymysql.connect("localhost", "root", "shen123", "test11")
return db
def sqlDML(sql, db):
cr = db.cursor()
cr.execute(sql)
db.commit()
cr.close()
#
if __name__ == '__main__':
MainCheck()
来源:https://blog.csdn.net/weixin_41896508/article/details/80859128
标签:python,内存,cpu,使用率
0
投稿
猜你喜欢
Pandas对每个分组应用apply函数的实现
2022-01-26 04:02:00
javaScript产生随机数的用法小结
2024-04-17 10:40:20
python 3调用百度OCR API实现剪贴板文字识别
2022-12-13 19:01:14
3个适合新手练习的python小游戏
2023-08-02 02:12:27
php日期转时间戳,指定日期转换成时间戳
2023-06-20 17:02:23
Python按照list dict key进行排序过程解析
2023-12-06 08:19:06
在PyCharm中批量查找及替换的方法
2023-05-29 17:15:13
asp文章上一篇,下一篇实现代码
2008-03-24 20:15:00
使用IP地址来统计在线人数方法
2007-08-13 12:51:00
python进阶之多线程对同一个全局变量的处理方法
2023-09-29 19:03:58
Python异常对代码运行性能的影响实例解析
2023-10-18 23:35:39
jQuery动态添加删除select项(实现代码)
2024-04-22 12:59:04
深入谈谈MySQL中的自增主键
2024-01-15 13:24:10
textarea 在IE和FF下换行无法正常显示的解决方法
2022-09-11 01:33:40
单利模式及python实现方式详解
2021-07-21 21:45:15
语义化你的HTML标签和属性
2008-06-12 13:18:00
GO语言操作Elasticsearch示例分享
2023-09-03 03:38:00
Python pytorch实现绘制一维热力图
2022-04-03 21:09:14
Python教程之全局变量用法
2023-12-18 11:55:35
Python脚本实现定时任务的最佳方法
2021-09-20 10:41:35