python监控服务器cpu温度实例_python 服务器 cpu 监控程序--转

后台 py 代码 app.py

'''

服务器cpu监控程序

思路:后端后台线程一旦产生数据,即刻推送至前端。

好处:不需要前端ajax定时查询,节省服务器资源。

作者:hhh5460

时间:2017.8.19

'''

import psutil

import time

from threading import Lock

from flask import Flask, render_template, session, request

from flask_socketio import SocketIO, emit

# Set this variable to "threading", "eventlet" or "gevent" to test the

# different async modes, or leave it set to None for the application to choose

# the best option based on installed packages.

async_mode = None

app = Flask(__name__)

app.config['SECRET_KEY'] = 'secret!'

socketio = SocketIO(app, async_mode=async_mode)

thread = None

thread_lock = Lock()

# 后台线程 产生数据,即刻推送至前端

def background_thread():

"""Example of how to send server generated events to clients."""

count = 0

while True:

socketio.sleep(5)

count += 1

t = time.strftime('%M:%S', time.localtime()) # 获取系统时间(只取分:秒)

cpus = psutil.cpu_percent(interval=None, percpu=True) # 获取系统cpu使用率 non-blocking

socketio.emit('server_response',

{'data': [t, *cpus], 'count': count},

namespace='/test') # 注意:这里不需要客户端连接的上下文,默认 broadcast = True !!!!!!!

@app.route('/')

def index():

return render_template('index.html', async_mode=socketio.async_mode)

# 与前端建立 socket 连接后,启动后台线程

@socketio.on('connect', namespace='/test')

def test_connect():

global thread

with thread_lock:

if thread is None:

thread = socketio.start_background_task(target=background_thread)

if __name__ == '__main__':

socketio.run(app, debug=True)

前端页面 /template/index.html

ECharts3 Ajax

// 作者:hhh5460

// 时间:2017.8.19

//--- 折柱 ---

var myChart = echarts.init(document.getElementById('main'));

myChart.setOption({

title: {

text: '服务器系统监控'

},

tooltip: {},

legend: {

data:['cpu1','cpu2','cpu3','cpu4']

},

xAxis: {

data: []

},

yAxis: {},

series: [{

name: 'cpu1',

type: 'line',

data: []

},{

name: 'cpu2',

type: 'line',

data: []

},{

name: 'cpu3',

type: 'line',

data: []

},{

name: 'cpu4',

type: 'line',

data: []

}]

});

// 本人笔记本有四个cpu,读者朋友请根据自己的情况,相应修改!!

// 五个全局变量:time、cpu1、cpu2、cpu3、cpu4

var time = ["","","","","","","","","",""],

cpu1 = [0,0,0,0,0,0,0,0,0,0],

cpu2 = [0,0,0,0,0,0,0,0,0,0],

cpu3 = [0,0,0,0,0,0,0,0,0,0],

cpu4 = [0,0,0,0,0,0,0,0,0,0]

//准备好统一的 callback 函数

var update_mychart = function (res) { //res是json格式的response对象

// 隐藏加载动画

myChart.hideLoading();

// 准备数据

time.push(res.data[0]);

cpu1.push(parseFloat(res.data[1]));

cpu2.push(parseFloat(res.data[2]));

cpu3.push(parseFloat(res.data[3]));

cpu4.push(parseFloat(res.data[4]));

if (time.length >= 10){

time.shift();

cpu1.shift();

cpu2.shift();

cpu3.shift();

cpu4.shift();

}

// 填入数据

myChart.setOption({

xAxis: {

data: time

},

series: [{

name: 'cpu1', // 根据名字对应到相应的系列

data: cpu1

},{

name: 'cpu2',

data: cpu2

},{

name: 'cpu3',

data: cpu3

},{

name: 'cpu4',

data: cpu4

}]

});

};

// 首次显示加载动画

myChart.showLoading();

// 建立socket连接,等待服务器“推送”数据,用回调函数更新图表

$(document).ready(function() {

namespace = '/test';

var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);

socket.on('server_response', function(res) {

update_mychart(res);

});

});

效果图

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值