2

我有 linux (Ubuntu) 机器作为客户端。我想测量 200 个用户同时尝试从我的服务器下载文件时的数据传输率。

有没有一些python或linux工具可以做到这一点?或者你能推荐一种方法吗?

我看到了这个 speedcheck 代码,我可以将它包装在线程中,但我不明白为什么那里的代码如此“复杂”并且块大小一直在变化。

4

4 回答 4

1

我最近使用Mult-Mechanize来运行一些性能测试。这相当容易并且工作得很好。

于 2012-07-18T20:56:21.110 回答
1

不确定您是否在谈论实际的专用服务器。对于交通图等,我更喜欢使用Munin。这是一个非常完整的监控应用程序,它使用 rrdtool 为您构建漂亮的图表。示例链接在 munin 网站上:完整设置eth0 流量图

新的munin 2更加华丽,但我还没有使用它,因为它不在我的存储库中,而且我不喜欢弄乱 perl 应用程序。

于 2012-07-20T08:41:21.233 回答
1

也许来自 apache 的“ab”?

ab -n 1000 -c 200 [http[s]://]hostname[:port]/path
-n Number of requests to perform
-c Number of multiple requests to make at a time

它有很多选项,http://httpd.apache.org/docs/2.2/programs/ab.html 或 man ab

于 2013-03-03T23:05:51.800 回答
0
import threading
import time
import urllib2

block_sz = 8192
num_threads = 1
url = "http://192.168.1.1/bigfile2"
secDownload = 30

class DownloadFileThread(threading.Thread):
    def __init__(self):
        threading.Thread.__init__(self)

        self.u = urllib2.urlopen(url)
        self.file_size_dl = 0


    def run(self):
        while True:
            buffer = self.u.read(block_sz)
            if not buffer:
                raise 'There is nothing to read. You should have bigger file or smaller time'

            self.file_size_dl += len(buffer)


if __name__ == "__main__":
    print 'Download from url ' + url + ' use in ' + str(num_threads)  + ' to download. test time ' + str(secDownload)  
        threads = []
        for i in range(num_threads):
            downloadThread = DownloadFileThread()
            downloadThread.daemon = True
            threads.append(downloadThread)
        for i in range(num_threads):
            threads[i].start()
        time.sleep(secDownload)

        sumBytes=0
        for i in range(num_threads):
            sumBytes = sumBytes +  threads[i].file_size_dl
        print sumBytes
        print str(sumBytes/(secDownload *1000000)) + 'MBps'
于 2012-07-20T08:35:42.153 回答