我需要检查我的rails应用程序的
性能.我安装了newrelic_rpm.
在environment.rb中,
添加了以下
内容:
config.gem "newrelic_rpm"
然后,在浏览器中我给了:
http://localhost:3000/newrelic
然后,它显示错误消息如下:
Routing Error No route matches “/newrelic” with {:method=>:get}
能帮我解决这个问题吗?
提前致谢…
我猜我的问题与通过工头在开发中运行瘦(和其他进程)有关.我
添加了以下
内容以使路由和监视工作:
配置/环境/ development.rb
require 'new_relic/rack/developer_mode'
config.middleware.use NewRelic::Rack::DeveloperMode
ENV['NEWRELIC_ENABLE'] = 'true'
设置ENV [‘NEWRELIC_ENABLE’] =’true’可以监视你想要的东西(rake任务等…)
原文链接:https://www.f2er.com/ruby/271146.html