python GUI + socket监控服务器流量

前言

最近入职了新公司,有一部分windows机器,这些机器没做监控,而且机器上跑的业务并不重要。虽然说不重要,但是出了问题,运维没有及时发现也是运维的锅。也懒得把这些机器加入现有的监控系统。和服务器使用需求方确认后,只要知道网卡有流量在跑,也不需要报警什么的,只要能看到流量就行了。然后一个简单的监控就这样形成了。

构思

  1. window服务器上装python环境,放一个脚本取流量信息,调用一个api接口将流量信息入库,然后一个web端结合echarts做图型展示。

2 . 通过ansible 运行python脚本,获取每台机器的流量

  1. 使用socket + GUI动态展示流量信息

第一种方案代码成本太高,还不如加入监控系统, pass掉。
第二种方案无法给到机器使用方使用(毕竟他们不是运维),而且也没有直观展示,太low, pass掉
所以使用第三种方案

监控方案

被监控端为服务端, 运行一个python脚本(为了避免在每台机器上装python环境,将python打包成exe),脚本计算3秒内的流量信息,主动发送到客户端
客户端通过配置文件去连接配置文件中的所有被监控端,然后在GUI中展示。这样在他们自己上的电脑上就能看到机器流量状态

(GUI和socket现学现卖,代码不好轻喷)

脚本

monitor_server.py

#!/usr/bin/python
import psutil
import socket
import os
import time

host_net_file =  os.path.join(os.path.expanduser('~'), '.host_net.txt')

def get_host_info():
    bytes_sent = psutil.net_io_counters().bytes_sent
    bytes_recv = psutil.net_io_counters().bytes_recv
    net_info = dict(bytes_sent=bytes_sent, bytes_recv=bytes_recv)
    return net_info

def get_old_data():
    if os.path.exists(host_net_file):
        with open(host_net_file, 'r') as f:
            line = f.readline().strip()
        return line

def sock_send_data():
    new_data = get_host_info()

    new_bytes_sent = new_data.get('bytes_sent', 0)
    new_bytes_recv = new_data.get('bytes_recv', 0)

    old_data = get_old_data()
    if old_data:
        old_bytes_sent = eval(old_data).get('bytes_sent', 0)
        old_bytes_recv = eval(old_data).get('bytes_recv', 0)
    else:
        old_bytes_sent, old_bytes_recv = 0, 0

    sent_data = round(float(new_bytes_sent - old_bytes_sent) / 1024, 2)
    recv_data = round(float(new_bytes_recv - old_bytes_recv) / 1024, 2)

    with open(host_net_file, 'w+') as f:
        f.write(str(get_host_info()))

    return '{"sent_data": %s, "recv_data": %s}'%(sent_data, recv_data)

if __name__ == '__main__':
    HOST = '0.0.0.0'
    PORT = 50000
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    s.bind((HOST, PORT))
    s.listen(5)
    while True:
            conn, addr = s.accept()
            print "Connected by", addr
            while True:
                try:
                    data = sock_send_data()
                    conn.sendall(data)
                    time.sleep(2)
                except:
                    break
    conn.close()
    s.close()        

monitor_client.py

#coding=utf8
from Tkinter import *
import os
import time
import json
import threading
import socket

conf_file = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'conf', 'config.conf')

def get_conf_info(config):
    with open(config) as f:
        return json.loads(f.read())

def telnet(host, port):
    sk = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    sk.settimeout(1)
    try:
        sk.connect((host, port))
        return True
    except Exception:
        return False
    finally:
        sk.close()

def monitor_sock(ip, port, num):
    data = json.loads(s.recv(1024))
    nat_sent = StringVar()
    nat_recv = StringVar()
    nat_sent.set(data.get('sent_data'))
    nat_recv.set(data.get('recv_data'))
    content_host = Label(main, text=ip, relief=RIDGE, width=15).grid(row=num, column=0)
    content_state = Label(main, text='在线', relief=RIDGE, width=10, fg='green').grid(row=num, column=1)
    content_sent = Label(main, textvariable=nat_sent, relief=RIDGE, width=10).grid(row=num, column=2)
    content_recv = Label(main, textvariable=nat_recv, relief=RIDGE, width=10).grid(row=num, column=3)
    global timer
    timer = threading.Timer(2, monitor_sock, (ip, port, num))
    timer.start()

if __name__ == '__main__':
    main = Tk()
    main.title("系统监控")
    main.geometry('350x300')

    title_host = Label(main, text="主机IP", relief=RIDGE, width=15).grid(row=0, column=0)
    title_state = Label(main, text="状态", relief=RIDGE, width=10).grid(row=0, column=1)
    title_nat_out = Label(main, text="Net_Sent", relief=RIDGE, width=10).grid(row=0, column=2)
    title_nat_in = Label(main, text="Net_Recv", relief=RIDGE, width=10).grid(row=0, column=3)

    num = 1
    for ip, port in get_conf_info(conf_file).items():
        if telnet(ip, port):
            s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
            s.connect((ip, port))
            timer = threading.Timer(1, monitor_sock, (ip, port, num,))
            timer.start()
        else:
            content_host = Label(main, text=ip, relief=RIDGE, width=15).grid(row=num, column=0)
            content_state = Label(main, text='不在线', relief=RIDGE, width=10, fg='red').grid(row=num, column=1)
            content_sent = Label(main, text=0, relief=RIDGE, width=10).grid(row=num, column=2)
            content_recv = Label(main, text=0, relief=RIDGE, width=10).grid(row=num, column=3)
        num += 1

    main.mainloop()

config.conf

{
    "192.168.2.200": 50000,
    "192.168.2.100": 50000,
    "192.168.2.21": 50000
}

打包

安装pyinstall

pip install pyinstall

打包

pyinstall -F -w monitor_server.py
pyinstall -F -w monitor_client.py

会生成一个dist目录,打包好的exe文件就在该目录下

运行效果图

monitor_client.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容