用python实现TPS和平均响应时间统计数据
Posted 上官夏洛特
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用python实现TPS和平均响应时间统计数据相关的知识,希望对你有一定的参考价值。
最近研究了下jmeter上tps和平均响应时间的统计数据,自己顺便用python代码简写了一个小demo,记录一下
import requests,time def get_res(): tps = [] count = 0 start = time.time() response_time = [] time1 = 0 while True: res = requests.get(\'https://www.baidu.com/\') end = time.time() if end - start < 1: count+=1 time1 += res.elapsed.total_seconds() else: response_time.append(round(time1/count,4)) time1 = res.elapsed.total_seconds() tps.append(count) count=1 start = end if len(tps) > 10: return tps,response_time start_time = time.time() print(get_res()) print(time.time()-start_time)
以上是关于用python实现TPS和平均响应时间统计数据的主要内容,如果未能解决你的问题,请参考以下文章