[py]监控内存并出图

Posted 毛台

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[py]监控内存并出图相关的知识,希望对你有一定的参考价值。

监控内存出图

先将内存数据搞到数据库

已使用内存算法

used = int(total) - int(free) - int(butffers) - int(cache)

pymysql模块使用


db = ms.connect(host="localhost", user="root", password="123456", db="mem")
db.autocommit(True)
cur = db.cursor()

cur.execute(sql)

pymysql入库脚本

from time import sleep, time
import pymysql as ms

db = ms.connect(host="localhost", user="root", password="123456", db="mem")
db.autocommit(True)
cur = db.cursor()


def get_mem():
    with open("/proc/meminfo") as f:
        total = f.readline().split()[1]
        free = f.readline().split()[1]
        f.readline()
        butffers = f.readline().split()[1]
        cache = f.readline().split()[1]
    used = int(total) - int(free) - int(butffers) - int(cache)
    sql = \'insert into mem_used values (%d,%d)\' % (used / 1024, time())
    cur.execute(sql)
    return int(used / 1024)


while True:
    mem = get_mem()
    print(mem)
    sleep(1)

以上是关于[py]监控内存并出图的主要内容,如果未能解决你的问题,请参考以下文章

nagios分组出图代码实现讲解[1]

zabbix监控 openstack 的实例的资源使用情况

nagios监控+pnp4出图

监控cactiez,监控不出图,有图不显示数据,有时图都不显示,日志报错?请大神们看一下?帮忙解决一下?

如何使用模块化代码片段中的LeakCanary检测内存泄漏?

如何用java代码来监控系统内存·cpu·线程占用情况,并生成日志