系统相关
首页 > 系统相关> > python-如何以编程方式查找linux中的网络使用情况

python-如何以编程方式查找linux中的网络使用情况

作者:互联网

我正在尝试通过python代码计算wlan1接口上的总网络流量.到目前为止,我尝试使用ethtool,iftop,ifstat,nethogs,但是其中大多数工具都显示ncurses界面(基于文本的UI).

我尝试过这样的事情

import subprocess
nw_usage = subprocess.Popen(['ifstat', '-i', 'wlan1'])

但这并不能给我网络使用价值.

我无法弄清楚如何从ncurses接口获取单个变量中的网络使用率值. (而且我感觉会有一些更好的方法来计算网络使用率)

任何帮助或指导将是一个很大的青睐.

谢谢

解决方法:

我知道这个问题已有数周之久,但也许这个答案仍然会有所帮助:)

您可以从/ proc / net / dev中读取设备统计信息.间隔读取发送/接收的字节并计算差值.这是我一起砍的一些简单的Python脚本

import re
import time


# A regular expression which separates the interesting fields and saves them in named groups
regexp = r"""
  \s*                     # a interface line  starts with none, one or more whitespaces
  (?P<interface>\w+):\s+  # the name of the interface followed by a colon and spaces
  (?P<rx_bytes>\d+)\s+    # the number of received bytes and one or more whitespaces
  (?P<rx_packets>\d+)\s+  # the number of received packets and one or more whitespaces
  (?P<rx_errors>\d+)\s+   # the number of receive errors and one or more whitespaces
  (?P<rx_drop>\d+)\s+      # the number of dropped rx packets and ...
  (?P<rx_fifo>\d+)\s+      # rx fifo
  (?P<rx_frame>\d+)\s+     # rx frame
  (?P<rx_compr>\d+)\s+     # rx compressed
  (?P<rx_multicast>\d+)\s+ # rx multicast
  (?P<tx_bytes>\d+)\s+    # the number of transmitted bytes and one or more whitespaces
  (?P<tx_packets>\d+)\s+  # the number of transmitted packets and one or more whitespaces
  (?P<tx_errors>\d+)\s+   # the number of transmit errors and one or more whitespaces
  (?P<tx_drop>\d+)\s+      # the number of dropped tx packets and ...
  (?P<tx_fifo>\d+)\s+      # tx fifo
  (?P<tx_frame>\d+)\s+     # tx frame
  (?P<tx_compr>\d+)\s+     # tx compressed
  (?P<tx_multicast>\d+)\s* # tx multicast
"""


pattern = re.compile(regexp, re.VERBOSE)


def get_bytes(interface_name):
    '''returns tuple of (rx_bytes, tx_bytes) '''
    with open('/proc/net/dev', 'r') as f:
        a = f.readline()
        while(a):
            m = pattern.search(a)
            # the regexp matched
            # look for the needed interface and return the rx_bytes and tx_bytes
            if m:
                if m.group('interface') == interface_name:
                    return (m.group('rx_bytes'),m.group('tx_bytes'))
            a = f.readline()


while True:
    last_time  = time.time()
    last_bytes = get_bytes('wlan0')
    time.sleep(1)
    now_bytes = get_bytes('wlan0')
    print "rx: %s B/s, tx %s B/s" % (int(now_bytes[0]) - int(last_bytes[0]), int(now_bytes[1]) - int(last_bytes[1]))

标签:network-programming,performance-testing,ubuntu-12-04,linux,python
来源: https://codeday.me/bug/20191121/2052013.html