zoukankan      html  css  js  c++  java
  • 监控网卡流量脚本(Python)

    #!/usr/bin/env python
    # coding: utf-8
    # author: Xiao Guaishou

    try:
        import psutil
    except ImportError:
        print('Error: psutil module not found!')
        exit()


    def get_key():

        key_info = psutil.net_io_counters(pernic=True).keys()

        recv = {}
        sent = {}

        for key in key_info:
            recv.setdefault(key, psutil.net_io_counters(pernic=True).get(key).bytes_recv)
            sent.setdefault(key, psutil.net_io_counters(pernic=True).get(key).bytes_sent)

        return key_info, recv, sent


    def get_rate(func):

        import time

        key_info, old_recv, old_sent = func()

        time.sleep(1)

        key_info, now_recv, now_sent = func()

        net_in = {}
        net_out = {}

        for key in key_info:
            net_in.setdefault(key, (now_recv.get(key) - old_recv.get(key)) / 1024)
            net_out.setdefault(key, (now_sent.get(key) - old_sent.get(key)) / 1024)

        return key_info, net_in, net_out


    while 1:
        try:
             key_info, net_in, net_out = get_rate(get_key)

             for key in key_info:
                 print('%s Input: %-5sKB/s Output: %-5sKB/s ' % (key, net_in.get(key), net_out.get(key)))
        except KeyboardInterrupt:
            exit()

    # End

  • 相关阅读:
    继续聊WPF——进度条
    转 std::vector成员函数
    转: std::string用法详解
    TCP,IP,HTTP,SOCKET区别和联系
    C语言中的字符串截取函数及应用
    字符串截取函数
    VIM快捷键:
    TCP/IP,HTTP,SOAP等协议之区别
    【转】 c语言string类函数实现汇总
    int型转化为std::string
  • 原文地址:https://www.cnblogs.com/yueminghai/p/6626948.html
Copyright © 2011-2022 走看看