码迷,mamicode.com
首页 > 其他好文 > 详细

CPU负载监控

时间:2018-03-16 17:11:31      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:top   tput   监控   date   output   pop   bsp   blog   while   

#!/usr/bin/python
#-*- encoding: utf-8 -*-
import os
import time
while True:
    loadavg=os.popen("cat /proc/loadavg | awk ‘{print $1}‘").read().replace(\n,‘‘)

#负载大于3就做记录
if float(loadavg) >= 3: date=time.strftime("%Y-%m-%dT%H-%M-%S", time.localtime()) data=os.popen("top -b -n 1").read() output = open(top-%s.log%date, w) output.write(data) output.close( ) time.sleep(10)

 

CPU负载监控

标签:top   tput   监控   date   output   pop   bsp   blog   while   

原文地址:https://www.cnblogs.com/cainiaoit/p/8582398.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!