1

我正在尝试将自定义指标发送到 NewRelic 见解,但不幸的是,它不适用于我当前正在向 New Relic 发送默认数据的 Rails 应用程序。

重现步骤

我刚刚登录了工作应用程序的控制台并运行了以下命令:

NewRelic::Agent.record_metric('/Custom/MyCategory/MyMetric', 5)

不幸的是,它从未出现在 Insights Data Explorer 中。

应用程序中的配置如下:

common: &default_settings
  license_key: <MY_KEY>
  app_name: my_app
  log_level: info

development:
  <<: *default_settings
  app_name: executive_alerts (development)
  monitor_mode: false

test:
  <<: *default_settings
  app_name: executive_alerts (test)
  monitor_mode: false

staging:
  <<: *default_settings
  app_name: executive_alerts (staging)

production:
  <<: *default_settings

谢谢!

4

1 回答 1

0

从 New Relic 代理的文档中:

更改您的命令:

NewRelic::Agent.record_metric('/Custom/MyCategory/MyMetric', 5)

至:

NewRelic::Agent.record_metric('Custom/MyCategory/MyMetric', 5)
于 2017-03-24T19:19:10.287 回答