使用 Rack 中间件显示页面响应时间和 AJAX 请求响应时间
我想编写一个 Rack 中间件,它将显示渲染页面的响应时间,以及页面上发出的任何 AJAX 请求的响应时间。执行此操作的最佳方法是什么?
I want to write a piece of Rack middleware that will display the response time for rendering the page, as well as the response times for any AJAX requests made on the page. What's the best way to go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试基于此railscast的内容。它将响应时间作为 HTML 注释注入到您的页面源中。对于 AJAX 请求,您可以检查 content-type/x-requested-with 标头,以适当的格式注入计时信息。
You can try something based on this railscast. It injects response times as HTML comments into your page source. For AJAX requests, you can inspect the content-type/x-requested-with headers to inject the timing information in the appropriate format.