python3实现windows下同名进程监控,供大家参考,具体内容如下
公司老版的SVN服务器的svn服务经常意外关闭,需要写个简单的监控脚本监控一下;
首先多个SVN服务使用不同的端口,使用wmic命令查看所有SVN进程占用的端口以此来判断目标服务是否存活,wimc命令如下:
wmic process where caption=”svn.exe” get commandline /value
然后用正则取出标准输出中的端口,用来比对;
def get_alive_port(program): """ 获取目标程序占用的端口 :param program {string} 目标进程 :return portlist {list} 目标进程占用的端口列表 """ cmd = 'wmic process where caption="%s" get commandline /value' % program ps = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True) portlist = [] while True: out = ps.stdout.readline() if out: out = out.decode("gb2312") templist = re.findall("[0-9]{4,5}", out) portlist.extend(templist) else: break return portlist
使用监控后发现SVN服务不意外关闭了,但是SVN程序被访问久了占用过大内存需要监控一下借助psutil来实现;
def howmuch_memory(program): """ 监控目标进程内存是否超过阀值,若超过则关闭 """ cmd = 'wmic process where caption="%s" get processid /value' % program ps = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True) pids = [] while True: out = ps.stdout.readline() if out: out = out.decode("gb2312") templist = re.findall("[0-9]{3,6}", out) pids.extend(templist) else: break for pid in pids: try: p = psutil.Process(int(pid)) p_memory = p.memory_info() if int(p_memory.rss / (1024 * 1024)) >= 200: p.kill() except Exception as e: print("出现如下错误:{0}".format(e)) continue
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“python3实现windows下同名进程监控”评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。