分析在 Mod_wsgi 上运行的 Python 脚本
如何分析在 apache 上的 mod_wsgi 上运行的 python 脚本
我想使用 cProfile,但它似乎需要我手动调用函数。 有没有办法全局启用 cProfile 并让它继续记录结果。
How can I profile a python script running on mod_wsgi on apache
I would like to use cProfile but it seems it requires me to invoke a function manually. Is there a way to enable cProfile globally and have it keep on logging results.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将 wsgi 应用程序函数包装在另一个函数中,该函数仅使用 cProfile 调用您的函数并将其用作应用程序。 或者您可以重用现有的 WSGI 中间件来为您完成此操作,例如 repoze.profile 几乎可以完成您的任务似乎想要。
You need to wrap you wsgi application function inside another function that just calls your function using cProfile and use that as the application. Or you can reuse existing WSGI middleware to do that for you, for example repoze.profile does pretty much what you seem to want.
以下是 WHIFF 的 WSGI 配置文件中间件(当前仅可从 Mercurial 存储库获取):
profile.py。 这应该可以帮助你开始。 如果您想修改它以在 WHIFF 上下文之外运行,请将该行更改
为类似的内容
Here is the WSGI profile middleware for WHIFF (currently only available from the mercurial repository):
profile.py. That should get you started. If you want to modify it to run outside of the WHIFF context change the line
to something like