如何测量Python请求POST请求的服务器响应时间?

问题描述 投票:13回答:2

我创建像这样的requests POST请求,其中我指定超时阈值:

response = requests.post(url, data=post_fields, timeout=timeout)

但是,为了确定“良好”的阈值,我想提前对服务器响应时间进行基准测试。

如何计算服务器的最小和最大响应时间?

python python-3.x server network-programming python-requests
2个回答
32
投票

Response返回的requests.post()对象有一个名为elapsed的属性,它给出了发送Request和收到Response之间的时间差。要在几秒钟内获得增量,请使用total_seconds()方法:

response = requests.post(url, data=post_fields, timeout=timeout)
print(response.elapsed.total_seconds())

应该提到的是requests.post()是一个同步操作,这意味着它会“阻塞”直到收到响应。


4
投票

这取决于您是否可以通过大量测试请求来访问服务器,或者是否需要等待实际请求发生。

如果您需要真实的请求数据,那么您需要打包调用以确定每个请求的时间:

start = time.clock()
response = requests.post(url, data=post_fields, timeout=timeout)
request_time = time.clock() - start
self.logger.info("Request completed in {0:.0f}ms".format(request_time)
#store request_time in persistent data store

您需要在某个时间段(文件,数据库等)存储每个请求的结果。然后你可以计算响应时间的统计数据。

如果你有一个可用的测试服务器,你可以使用像apachebench这样的东西来为没有python的响应进行基准测试,并为每个请求发送测试数据:

https://gist.github.com/kelvinn/6a1c51b8976acf25bd78

© www.soinside.com 2019 - 2024. All rights reserved.