吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1407|回复: 0
收起左侧

[Python 转载] 定时记录进程的内存

[复制链接]
hegexunmeng 发表于 2021-7-3 23:36
本帖最后由 hegexunmeng 于 2021-7-4 12:17 编辑
第一次发帖~python小萌新,欢迎提建议csdn同步链接: 地址
起因:

查询内存泄漏问题,定时记录任务管理器中指定pid进程的内存情况

于是有了这段代码

[Python] 纯文本查看 复制代码
# -*- encoding:utf-8 -*-
 
"""
CSDN:https://blog.csdn.net/wudingan?spm=1010.2135.3001.5343
查询内存泄漏问题,定时记录任务管理器中指定pid进程的内存情况
目前是每隔10s执行一次,可以自己自定义
"""
import os
import time
import multiprocessing
 
#  打印所有进程
def getall():
    for line in os.popen('tasklist').readlines():
        print line.decode('gbk')
 
 
#  获取指定pid的进程内存
def getonetask(pid):
    pid = pid
    for line in os.popen('tasklist').readlines():
        if pid in line:
            #  print line[65:]  # 这个要自己调整一下,先打印一下line, 一点点截取只剩下内存大小
            global infomation
            information = time.strftime("%H:%M:%S", time.localtime()) + "   " + line[65:]
            return information
 
 
#  定时存进一个txt文档里
def saveinformation(information):
    filename = 'savememory'
    with open(filename, 'a') as f:
        print "每隔10s去执行一次"
        f.write(information)
 
 
#  定时执行
def work():
    while 1:
        info = getonetask("33840")
        saveinformation(info)
        time.sleep(10)
 
 
if __name__ == '__main__':
    #  getall()
    #  infomation = getonetask("33840")  # 先通过getAll()获得了自己想要的进程pid
    #  saveinformation(infomation)
    p = multiprocessing.Process(target=work(),)
    p.start()
    p.deamon = True
 


运行结果:
image.png

image.png

免费评分

参与人数 1吾爱币 +5 热心值 +1 收起 理由
苏紫方璇 + 5 + 1 感谢发布原创作品,吾爱破解论坛因你更精彩!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 15:41

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表