基本はNew Relic のブラウザから APM を選択して ruby を選択してそれに従う
#rails で hello という新しいプロジェクト作成 rails new hello
プロジェクト内の Gemfile に gem ‘newrelic_rpm’ と ‘therubyracer’, platforms: :ruby 記載
vim hello/Gemfile
gem 'newrelic_rpm' #これがないと起動できない gem 'therubyracer', platforms: :ruby
後の流れ
# インストール bundle install #New Relic のブラウザから Download newrelic.yml で設定ファイルがDLできるので引っ張ってきてプロジェクトの config に配置 cp newrelic.yml /root/hello/config/ #適当に表示させるような hello world を表示するようなページ作成して配置。 #次に rails を起動させる rails s -b 0.0.0.0