本文实例为大家分享了python监控进程脚本的具体代码,供大家参考,具体内容如下

原理:

监控一个指定进程,每隔5秒钟获取其CPU、内存使用量超过60%即kill掉该进程,获取其句柄数,超过300也kill掉该进程

运行环境是windows 64位系统+python 2.7 64位 ,这里需要使用到psutil 类库,要另外安装。脚本里面可以自动安装,前提是你已经下载好了安装包psutil-3.3.0.win-amd64-py2.7.exe

下面看代码:

#!/usr/bin/env python

# -*- coding:utf-8 -*-

import time

from datetime import date,datetime,timedelta

import platform

import os

import win32ui,win32api,win32con,win32gui

import subprocess

def install():

print("install psutil...")

sysstr = platform.system()

if(sysstr =="Windows"):

print ("Call Windows tasks")

bit,type=platform.architecture()

print ("os bit: %s " % bit)

#print ("os type: %s " % type)

if(bit == "64bit"):

fileName="psutil-3.3.0.win-amd64-py2.7.exe";

else:

fileName="psutil-3.3.0.win32-py2.7.exe";

print("will install the file [%s]" % fileName)

#启动程序--4种方法

#subprocess.Popen(fileName); #非阻塞

#subprocess.Popen(fileName).wati(); #阻塞

#os.system(fileName); #阻塞

#win32api.ShellExecute(0,'open',fileName,'',0)

label = 'Setup' #此处假设主窗口名为tt

hld = win32gui.FindWindow(None,label)

count=0

while (hld == 0 and count<20):

print("the setup is no running,will run it...")

count += 1

win32api.ShellExecute(0,0)

print("sleep 1 seconds...")

time.sleep(0.5)

#wnd = win32ui.GetForegroundWindow()

#print wnd.GetWindowText()

hld = win32gui.FindWindow(None,label)

print("hld is %s" % hld)

pwin=win32ui.FindWindow(None,label)

print("pwin is %s" % pwin)

print pwin.GetWindowText()

print("click...")

button2=win32ui.FindWindowEx(pwin,None,'下一步(&N) >') #找到按钮

button2.SendMessage(win32con.BM_CLICK,-1)

button2=win32ui.FindWindowEx(pwin,'完成') #找到按钮

button2.SendMessage(win32con.BM_CLICK,-1)

print("install done...")

# 鼠标点击

#print("click...")

#win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN,0)

#time.sleep(0.1)

#win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP,0)

#time.sleep(1)

#win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN,0)

elif(sysstr == "Linux"):

print ("Call Linux tasks")

else:

print ("Other System tasks")

try:

print("import psutil...")

import psutil

except Exception,e:

print Exception,":",e

install()

import psutil

def get_proc_by_id(pid):

return psutil.Process(pid)

def get_proc_by_name(pname):

""" get process by name

return the first process if there are more than one

"""

for proc in psutil.process_iter():

try:

# return if found one

if proc.name().lower() == pname.lower():

return proc

except psutil.AccessDenied:

pass

except psutil.NoSuchProcess:

pass

return None

def getProcess(pname,day=0,hour=0,min=0,second=0):

# Init time

now = datetime.now()

strnow = now.strftime('%Y-%m-%d %H:%M:%S')

print "now:",strnow

# First next run time

period = timedelta(days=day,hours=hour,minutes=min,seconds=second)

next_time = now + period

strnext_time = next_time.strftime('%Y-%m-%d %H:%M:%S')

print "next run time:",strnext_time

while True:

# Get system current time

iter_now = datetime.now()

iter_now_time = iter_now.strftime('%Y-%m-%d %H:%M:%S')

if str(iter_now_time) == str(strnext_time):

next_time = iter_now + period

strnext_time = next_time.strftime('%Y-%m-%d %H:%M:%S')

print "next run time:",strnext_time

try:

Process=get_proc_by_name(pname)

except Exception,e:

print Exception,e

if Process != None :

print "-------Found the process : %s" % Process.name();

print("pid is (%s)" % Process.pid);

Cpu_usage = Process.cpu_percent(interval=1)

print("cpu percent is (%s)" % Cpu_usage);

if (100-Cpu_usage) < 0.1 :

print "cpu percent larger 60,now will terminate this process !";

Process.terminate();

Process.wait(timeout=3);

continue

RAM_percent = Process.memory_percent()

print("memory percent is (%s)" % RAM_percent);

if (60-RAM_percent) < 0.1 :

print "memory percent larger 60,now will terminate this process !";

Process.terminate();

Process.wait(timeout=3);

continue

all_files = list(Process.open_files());

print("open files size is (%d)" % len(all_files));

if (len(all_files)>300) :

print "open files size larger 300,now will terminate this process !";

Process.terminate();

Process.wait(timeout=3);

continue

Threads_Num=Process.num_threads()

print("threads number is (%s)" % Threads_Num);

if (Threads_Num>200) :

print "threads number larger 200,now will terminate this process !";

Process.terminate();

Process.wait(timeout=3);

continue

else :

print "-------No found the process : %s" % pname;

continue

if __name__ == '__main__':

print("main....")

getProcess("QQ.exe",second=5)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

python监控进程状态_python监控进程脚本相关推荐

  1. python控制系统进程_python 监控windows进程

    python os.startfile python实现双击运行程序 python监控windows程序 监控进程不在时重新启动 用python监控您的window服务 原创作品,允许转载,转载时请务 ...

  2. python监控端口_python监控设备端口示例

    python监控设备端口示例 发布于 2014-08-10 18:22:16 | 120 次阅读 | 评论: 0 | 来源: 网友投递 Python编程语言Python 是一种面向对象.解释型计算机程 ...

  3. python有多少关键字_Python挖词脚本,挖出几十万关键词不是梦带搜索量

    在运行脚本之前,请确定你是否按照了MySQLdb库,安装方法可以去百度一下. 下面是我的代码. #!/usr/local/bin/python #coding:utf8 # 2015-6-26 Dao ...

  4. python守护多线程_Python守护进程(多线程开发)入门实例

    这篇文章主要为大家详细介绍了Python守护进程(多线程开发)入门实例,具有一定的参考价值,可以用来参考一下. 对python这个高级语言感兴趣的小伙伴,下面一起跟随512笔记的小编两巴掌来看看吧! ...

  5. python自动化发送邮件_Python发送邮件自动化脚本

    Python发送邮件自动化脚本 import smtplib # 发送字符串的邮件 from email.mime.text import MIMEText # 处理多种形态的邮件主体我们需要 MIM ...

  6. python发送邮件群发_Python发邮件脚本,Python调用163邮箱SMTP服务实现邮件群发

    邮件营销,一个昔日辉煌,如今没落的广告营销方式,曾经的恶意广告邮件群发,到现在还存留着的大站协议群发,可能还是有不少人能够做到正常群发邮件,但大概率很多人都不会点开邮件查看邮件内容吧,除非是很许可的, ...

  7. python测试程序运行时间_Python如何测量脚本运行时间

    python脚本使用统计时间的方式是time.clock() 接下来,就几种python的统计时间方式对比一下: 方法1:import datetime starttime = datetime.da ...

  8. python监听文件更改记录_python 监控文件修改

    Pyinotify – Linux中实时监控文件系统更改 Pyinotify 是一个简单而实用的 Python 模块,它用于通过 inotify 实时监控Linux文件系统的更改.用于在Linux中实 ...

  9. bat脚本中获取上级目录_使用Python写一个可以监控Tomcat 运行的脚本,并且把.py文件转换成.exe文件...

    使用Python写一个可以监控Tomcat 运行的脚本,并且把.py文件转换成.exe文件 文章来源与博主本人的CSDN博客,博客地址:https://blog.csdn.net/weixin_435 ...

最新文章

  1. asp.net 操作excel的实现代码
  2. android 搜索框 github,Github上Android简单好用的提示框推荐 | 夕辞
  3. 判断数组对象里面的某个属性全部为true才执行下一步操作
  4. C++学习笔记(五)--指针、NULL、引用
  5. Dynagen0.11+Pemuwrapper入手麻烦二三事——告诉初学者直路
  6. oracle 取时间比较,Oracle最大日期获取方法
  7. python 遍历list并删除部分元素
  8. 全民编程时代,程序员该如何保住饭碗?
  9. 记一次针对Centos的入侵分析
  10. pat乙级 1091 N-自守数 (15 分)
  11. Proteus里设置任意电源值的POWER的实现
  12. 幼儿园小程序实战开发教程
  13. 监管大屏系统_国网信息运维综合监管系统及大屏可视化平台建设介绍
  14. 云队友丨快手估值越高,越像抖音
  15. TDS210示波器的应用
  16. python空间点赞_用Python登录好友QQ空间点赞
  17. 如何用vits训练模型
  18. Profinet现场总线耦合器模拟量扩展IO
  19. python动画精灵_Python精灵模块简介
  20. 如何把heic格式转换为jpg?这几种方法建议收藏

热门文章

  1. Python:条件判断
  2. centos进入单用户模式
  3. Synergy工具 共享Windows系统电脑Linux系统电脑 鼠标键盘
  4. 阴差阳错2019-12-13
  5. 用jquery调用wcf下的各种错误码的解释。
  6. 什么是功能性需求和非功能性需求
  7. sqlserver中的查询两个结果集的差的运算
  8. 16道嵌入式C语言面试题(经典) 预处理器(Preprocessor)
  9. 一文读懂什么是C++移动语义《一》
  10. enum-使用宏管理你的枚举型数据