我已经配置了新遗迹与歌利亚在这里解释
我正在使用gem 'newrelic_rpm'
,但没有获得newrelic服务的统计信息
我们必须在应用程序的开头添加手动启动
NewRelic::Agent.manual_start({:env => Goliath.env.to_s})
class NewrelicStatsExample < Goliath::API
# Stuff ...
手动启动中有一个bug,最近的gem已经修复了。
还要确保在newrelic.yml
文件中测试的环境将monitor_mode设置为true:
production:
<<: *default_settings
app_name: New Relic Example App (Production)
monitor_mode: true