- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
现在我正在 try catch flask 中每个请求的统计信息,我能够捕获请求完成所需的时间。有没有办法捕获路线内每个功能所花费的时间。
MY Code capturing the time taken by a route
@app.teardown_request
def teardown_func(response):
print("tearing down reqest")
print("Request",request)
required_data = {
"path": request.full_path,
"url": request.url,
"json_data": request.get_json(),
"start": request.start_time,
"stop": dt.utcnow(),
"total_elapsed_time": (dt.utcnow() - request.start_time).total_seconds()
}
print("request data",required_data)
return response
def call_func():
sleep(5)
print("FunctionCalled")
def another_func():
sleep(5)
print("FunctionCalled2")
@app.route('/',methods=['GET','POST'])
def hello2():
time.sleep(10)
call_func()
another_func()
return 'Hello World'
如何计算 call_func() 和 another_func() 在执行该路由时花费了 5 秒的时间?
最佳答案
一种方法是在您想要计时的函数周围使用装饰器。然后,装饰器会将函数名称以及函数运行时间添加到保存在应用程序全局 g
属性 timings
中的字典中。这可以记录在 teardown_request
或 after_request
Hook 中,或者如此处所示,通过 /
View 函数记录:
from flask import Flask, Response, g
import time
app = Flask(__name__)
@app.before_request
def before_request_func():
g.timings = {}
from functools import wraps
def time_this(func):
@wraps(func)
def wrapper(*args, **kwargs):
start = time.time()
r = func(*args, **kwargs)
end = time.time()
g.timings[func.__name__] = end - start
return r
return wrapper
@time_this
def call_func():
time.sleep(1)
@time_this
def another_func():
time.sleep(2)
@app.route('/',methods=['GET','POST'])
def hello2():
call_func()
another_func()
return Response('Hello World: ' + str(g.timings), mimetype='text/plain')
更新
我只是想指出一点,当您为 View 函数计时时,直到函数返回后才会创建计时并将其添加到 timings
字典中,因此在这种情况下 timings
字典最好在 after_request
钩子(Hook)函数中处理,例如:
@app.after_request
def after_request_func(response):
# just append timings to the output response:
response.data += ('\n' + str(g.timings)).encode('ascii')
return response
@app.route('/',methods=['GET','POST'])
@time_this
def hello2():
call_func()
another_func()
return Response('Hello World', mimetype='text/plain')
输出:
Hello World
{'call_func': 1.0014231204986572, 'another_func': 2.0004665851593018, 'hello2': 3.001889705657959}
关于python - 如何跟踪 Flask 中 route 每个函数所花费的时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61060941/
我一直在读一本分配给类(class)的书,它提到数组访问需要 O(1) 时间。我意识到这非常快(也许尽可能快),但是如果您有一个循环必须多次引用它,那么分配一个临时变量以在数组中查找值有什么好处吗?或
我一直试图找出为什么这个查询花了这么长时间。以前,它的执行时间约为 150 毫秒到 200 毫秒,但现在需要 25 秒或更长时间。这是从昨晚到今天之间的事。唯一改变的就是将数据添加到表中。 根据下面的
我有一个 ng repeat 重复数据。 - data.image(src)部分为null,src=null的不再重复。 我用一个简单的 ng-if 解决了它。
我有一个包含大量测试的 Laravel 项目。我正在使用 pcov 来计算代码覆盖率,大约需要 4 分钟。但是 pcov 不支持分支覆盖,所以我决定使用 xdebug。 使用 xdebug 测试执行,
我已经被这个问题困扰了一段时间了,我被难住了。 Automapper 需要 4 秒来映射 19 个对象。在我的机器(24GB 内存,3.6Ghz i7)上,该操作应该花费毫秒或纳秒。 这是映射调用。
我有一个包含大量测试的 Laravel 项目。我正在使用 pcov 来计算代码覆盖率,大约需要 4 分钟。但是 pcov 不支持分支覆盖,所以我决定使用 xdebug。 使用 xdebug 测试执行,
我在机器 A 上有一个 java 进程通过 TCP 与机器 B 上的 Tomcat 通信。 TCP 连接(只是 syn-syn/ack 交换)始终需要 100 毫秒的数量级,而 ping 请求需要 1
我做了一项任务,从 sqlserver 获取超过 200 万条记录并将它们填充到 Asp.net GridView 中。 问题是,查询需要超过 2 分钟才能获得记录,而我的查询现在已经完全优化。 当我
我希望将 165 秒变成 2:40 而不是 0:2:45 函数需要能够适应秒值的大小。 我知道有无数种方法可以做到这一点,但我正在寻找一种干净的方法来做到这一点,除了 jQuery 之外没有任何外部库
我是一名优秀的程序员,十分优秀!